We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 975e84b commit 3d22f02Copy full SHA for 3d22f02
.github/workflows/backend-integration-test.yml
@@ -1,17 +1,6 @@
1
name: Backend-Integration-Tests
2
on:
3
- push:
4
- paths:
5
- - 'backend/**'
6
- branches:
7
- - main
8
- - staging
9
- pull_request:
10
11
12
13
- - '*'
14
- workflow_dispatch:
+ workflow_dispatch: # Only runs when manually triggered
15
16
concurrency:
17
group: ${{ github.workflow }}-${{ github.ref }}
@@ -42,4 +31,4 @@ jobs:
42
31
env:
43
32
BEACONCHAIN_CONFIG : ${{ secrets.CI_CONFIG_PATH }}
44
33
run: |
45
- go test -tags=integration -failfast ./pkg/api/...
34
+ go test -tags=integration -failfast -count=1 -vet=off ./pkg/api/...
0 commit comments