Skip to content

Commit

Permalink
fixed label
Browse files Browse the repository at this point in the history
  • Loading branch information
zMynxx committed Feb 29, 2024
1 parent a29a612 commit 91fd1f6
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
platforms: linux/amd64
push: false
load: true
tags: ${{ github.repository }}:${{ github.sha }}
tags: release:${{ github.sha }}
cache-from: type=gha
cache-to: type=gha,mode=max

Expand All @@ -60,7 +60,7 @@ jobs:
--interactive \
--rm \
--volume ./project-demo:/project \
${{ github.repository }}:${{ github.sha }} \
release:${{ github.sha }} \
ceedling release
- name: Semantic Versioning
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
platforms: linux/amd64
push: false
load: true
tags: ${{ github.repository }}:${{ github.sha }}
tags: tests:${{ github.sha }}
cache-from: type=gha
cache-to: type=gha,mode=max

Expand All @@ -42,5 +42,5 @@ jobs:
--interactive \
--rm \
--volume ./project-demo:/project \
${{ github.repository }}:${{ github.sha }} \
tests:${{ github.sha }} \
ceedling test:all
39 changes: 39 additions & 0 deletions .trunk/configs/.clang-tidy
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
Checks: >-
bugprone-*,
cppcoreguidelines-*,
google-*,
misc-*,
modernize-*,
performance-*,
readability-*,
-bugprone-lambda-function-name,
-bugprone-reserved-identifier,
-cppcoreguidelines-avoid-goto,
-cppcoreguidelines-avoid-magic-numbers,
-cppcoreguidelines-avoid-non-const-global-variables,
-cppcoreguidelines-pro-bounds-array-to-pointer-decay,
-cppcoreguidelines-pro-type-vararg,
-google-readability-braces-around-statements,
-google-readability-function-size,
-misc-no-recursion,
-modernize-return-braced-init-list,
-modernize-use-nodiscard,
-modernize-use-trailing-return-type,
-performance-unnecessary-value-param,
-readability-magic-numbers,
CheckOptions:
- key: readability-function-cognitive-complexity.Threshold
value: 100
- key: readability-function-cognitive-complexity.IgnoreMacros
value: true
# Set naming conventions for your style below (there are dozens of naming settings possible):
# See https://clang.llvm.org/extra/clang-tidy/checks/readability/identifier-naming.html
# - key: readability-identifier-naming.ClassCase
# value: CamelCase
# - key: readability-identifier-naming.NamespaceCase
# value: lower_case
# - key: readability-identifier-naming.PrivateMemberSuffix
# value: _
# - key: readability-identifier-naming.StructCase
# value: CamelCase
1 change: 1 addition & 0 deletions .trunk/trunk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ runtimes:
# This is the section where you manage your linters. (https://docs.trunk.io/check/configuration)
lint:
enabled:
- [email protected]
- [email protected]
- git-diff-check
- [email protected]
Expand Down

0 comments on commit 91fd1f6

Please sign in to comment.