We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10dcecf commit 20f2935Copy full SHA for 20f2935
1 file changed
.github/workflows/gating.yaml
@@ -4,13 +4,18 @@ name: Gating
4
"on":
5
pull_request:
6
push:
7
+ branches:
8
+ - main
9
workflow_dispatch:
10
inputs: {}
11
12
jobs:
13
tests:
14
name: Unit tests
15
runs-on: ubuntu-latest
16
+ permissions:
17
+ id-token: write
18
+ contents: read
19
20
steps:
21
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
@@ -25,11 +30,12 @@ jobs:
25
30
run: uvx --with tox-uv tox -e py3
26
31
27
32
- name: Upload coverage to Codecov
28
- uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6
33
+ uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7
29
34
with:
35
fail_ci_if_error: true
36
verbose: true
- token: ${{ secrets.CODECOV_TOKEN }}
37
+ use_oidc: true
38
+ flags: unit-tests
39
40
linters:
41
name: Linters
0 commit comments