Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,13 @@ permissions:

jobs:
build-and-verify:
uses: Open-CMSIS-Pack/workflows-and-actions-collection/.github/workflows/build-and-verify.yml@v1.0.0
uses: Open-CMSIS-Pack/workflows-and-actions-collection/.github/workflows/build-and-verify.yml@v1.0.1
secrets:
QLTY_COVERAGE_TOKEN: ${{ secrets.QLTY_COVERAGE_TOKEN }}
with:
program: cbridge
go-version-file: ./go.mod
enable-code-climate: true
artifact-retention-days: 1
enable-qlty-coverage: true

publish-test-results:
name: "Publish Tests Results"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions: read-all

jobs:
markdown-check:
uses: Open-CMSIS-Pack/workflows-and-actions-collection/.github/workflows/markdown-lint.yml@v1.0.0
uses: Open-CMSIS-Pack/workflows-and-actions-collection/.github/workflows/markdown-lint.yml@v1.0.1
with:
lint-config: '.github/markdownlint.jsonc'
link-check-config: '.github/markdown-link-check.jsonc'
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@ on:
- "*"

jobs:
test:
uses: Open-CMSIS-Pack/generator-bridge/.github/workflows/test.yml@main
build-and-verify:
uses: Open-CMSIS-Pack/workflows-and-actions-collection/.github/workflows/build-and-verify.yml@v1.0.1
with:
program: cbridge
go-version-file: ./go.mod
enable-qlty-coverage: false

goreleaser:
runs-on: ubuntu-latest
needs: test
needs: [ build-and-verify ]
permissions:
contents: write # for goreleaser/goreleaser-action to create a GitHub release
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ permissions:

jobs:
update-workflows:
uses: Open-CMSIS-Pack/workflows-and-actions-collection/.github/workflows/update-workflow.yml@v1.0.0
uses: Open-CMSIS-Pack/workflows-and-actions-collection/.github/workflows/update-workflow.yml@v1.0.1
secrets:
TOKEN_ACCESS: ${{ secrets.GITHUB_TOKEN }}
TOKEN_ACCESS: ${{ secrets.GRASCI_WORKFLOW_UPDATE }}
Loading