-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dennis Eichhorn
committed
Apr 24, 2024
1 parent
7512f19
commit de7a175
Showing
54 changed files
with
218 additions
and
164 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: CI | ||
|
||
on: | ||
workflow_call: | ||
secrets: | ||
GH_TOKEN: | ||
required: true | ||
GH_PAT: | ||
required: true | ||
CODECOV_TOKEN: | ||
required: true | ||
|
||
jobs: | ||
codestyle-tests: | ||
runs-on: ubuntu-latest | ||
if: "!contains(github.event.head_commit.message, 'NO_CI')" | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@main | ||
with: | ||
fetch-depth: 0 | ||
submodules: recursive | ||
token: ${{ secrets.GH_TOKEN }} | ||
- name: Checkout Build Repository | ||
uses: actions/checkout@main | ||
with: | ||
fetch-depth: 1 | ||
ref: develop | ||
repository: Karaka-Management/Build | ||
path: Build | ||
- name: Copy config file | ||
run: | | ||
cp ./Build/Config/.clang-format ./.clang-format | ||
- name: Lint Code Base | ||
uses: super-linter/[email protected] | ||
env: | ||
VALIDATE_ALL_CODEBASE: false | ||
VALIDATE_CLANG_FORMAT : true | ||
DEFAULT_BRANCH: develop | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule Build
updated
3 files
+0 −3 | Config/.clang-format | |
+6 −6 | Helper/Scripts/release.sh | |
+4 −0 | LICENSE.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule Helper
updated
from 2a5330 to 207895
Submodule cOMS
updated
38 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,4 +19,4 @@ | |
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true | ||
} | ||
} |
Oops, something went wrong.