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.
pull_request_target
1 parent ade2d37 commit acdb1afCopy full SHA for acdb1af
.github/workflows/ci.yml
@@ -8,10 +8,6 @@ on:
8
9
jobs:
10
build:
11
- permissions:
12
- contents: write
13
- id-token: write
14
-
15
runs-on: ubuntu-latest
16
continue-on-error: ${{ matrix.experimental }}
17
strategy:
.github/workflows/codecov.yml
@@ -0,0 +1,25 @@
1
+name: Codecov
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request_target:
7
+jobs:
+ codecov:
+ permissions:
+ id-token: write
+ contents: write
+ runs-on: ubuntu-latest
+ name: Codecov
+ steps:
+ - uses: actions/checkout@v2
18
+ - uses: ruby/setup-ruby@v1
19
+ with:
20
+ ruby-version: ${{ matrix.ruby }}
21
+ bundler-cache: true
22
+ - uses: codecov/codecov-action@v4
23
24
+ use_oidc: true
25
0 commit comments