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
7 changes: 7 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: 'CI'

on: # Build any PRs and main branch changes
workflow_dispatch: # Allows to run the workflow manually from the Actions tab
pull_request:
Expand All @@ -18,10 +19,16 @@ on: # Build any PRs and main branch changes
schedule:
- cron: '0 0 1 * *' # Every month

permissions:
contents: read

concurrency:
group: "${{ github.workflow }}-${{ github.head_ref || github.ref }}"
cancel-in-progress: true

env:
TEST_OUTPUT_STYLE: pretty

jobs:
tests:
name: Tests
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/coverage-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ on:
workflows: ["CI"]
types: [completed]

permissions:
contents: read
checks: write # For the check run creation !

jobs:
upload:
name: Upload
name: Coverage
permissions:
contents: read
checks: write # For the check run creation !
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/pre-check-CI-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ on:
- '.github/workflows/reusable-CI-workflow.yml'
- '.github/workflows/reusable-coverage-upload-workflow.yml'

permissions:
contents: read
checks: write # For the check run creation !

concurrency:
group: "${{ github.workflow }}-${{ github.head_ref || github.ref }}"
cancel-in-progress: true
Expand All @@ -29,7 +33,7 @@ jobs:
uses: ./.github/workflows/reusable-CI-workflow.yml

upload:
name: Upload
name: Coverage
needs: [tests]
permissions:
contents: read
Expand Down
Loading