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 51fe497 commit 8dca2d4Copy full SHA for 8dca2d4
.github/workflows/keystore.yml
@@ -2,7 +2,7 @@ name: Keystore Checks
2
permissions:
3
contents: read
4
5
-on: [push]
+on: push
6
7
jobs:
8
changes:
@@ -23,8 +23,10 @@ jobs:
23
- 'keystore/**'
24
25
run-tests:
26
- if: needs.changes.outputs.keystore-src == 'true'
+ name: run tests
27
runs-on: ubuntu-latest
28
+ needs: changes
29
+ if: needs.changes.outputs.keystore-src == 'true'
30
defaults:
31
run:
32
working-directory: keystore
@@ -45,8 +47,10 @@ jobs:
45
47
run: go test ./... -coverpkg=./... -coverprofile=coverage.txt
46
48
49
build-race-tests:
50
+ name: race tests
51
52
53
54
steps:
55
- name: Checkout
56
uses: actions/checkout@v4
0 commit comments