Skip to content

Commit 3e83688

Browse files
committed
fix
1 parent 68dfb9e commit 3e83688

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.github/workflows/pull_request.yaml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,20 @@ jobs:
2424

2525
license:
2626
name: License headers check
27-
needs: soundness
27+
runs-on: ubuntu-latest
28+
strategy:
29+
fail-fast: false
2830
steps:
29-
- name: "License headers check"
30-
run: |
31-
./scripts/check_license_headers.sh
31+
- 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
3241
3342
unit-tests:
3443
name: Unit tests

0 commit comments

Comments
 (0)