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 68dfb9e commit 3e83688Copy full SHA for 3e83688
.github/workflows/pull_request.yaml
@@ -24,11 +24,20 @@ jobs:
24
25
license:
26
name: License headers check
27
- needs: soundness
+ runs-on: ubuntu-latest
28
+ strategy:
29
+ fail-fast: false
30
steps:
- - name: "License headers check"
- run: |
31
- ./scripts/check_license_headers.sh
+ - name: Checkout repository
32
+ uses: actions/checkout@v4
33
+ with:
34
+ persist-credentials: false
35
+ - name: Mark the workspace as safe
36
+ # https://github.com/actions/checkout/issues/766
37
+ run: git config --global --add safe.directory ${GITHUB_WORKSPACE}
38
+ - name: License headers check
39
+ run: |
40
+ ./scripts/check_license_headers.sh
41
42
unit-tests:
43
name: Unit tests
0 commit comments