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
8 changes: 6 additions & 2 deletions .github/workflows/test-bohrium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ name: Test Bohrium
types:
- "labeled"

permissions:
contents: read
id-token: write

jobs:
test:
runs-on: ubuntu-latest
Expand All @@ -35,8 +39,8 @@ jobs:
BOHRIUM_PROJECT_ID: ${{ secrets.BOHRIUM_PROJECT_ID }}
BOHRIUM_ACCESS_KEY: ${{ secrets.BOHRIUM_ACCESS_KEY }}
- uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
use_oidc: true
remove_label:
permissions:
contents: read
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ name: Python package
- 'pre-commit-ci-update-config'
pull_request:

permissions:
contents: read
id-token: write

jobs:
test:
runs-on: ${{ matrix.platform }}
Expand Down Expand Up @@ -49,8 +53,8 @@ jobs:
python -m coverage combine
python -m coverage report
- uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
use_oidc: true
pass:
needs: [test]
runs-on: ubuntu-latest
Expand Down
Loading