Skip to content
Merged
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
11 changes: 11 additions & 0 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
name: Run tests
on: [push, pull_request]

permissions:
contents: read

jobs:
run-tests:
name: Run tests
permissions:
contents: read
actions: write
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -124,6 +130,8 @@ jobs:
runs-on: ubuntu-latest
needs: run-tests
if: ${{ always() }}
permissions:
actions: write
steps:
- name: Merge coverage
uses: actions/upload-artifact/merge@v4
Expand All @@ -137,6 +145,9 @@ jobs:
runs-on: ubuntu-latest
needs: merge-coverage
if: ${{ always() }}
permissions:
contents: read
actions: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down
Loading