-
Notifications
You must be signed in to change notification settings - Fork 9
51 lines (50 loc) · 1.24 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
module:
- ''
- 'provider/file'
- 'provider/pflag'
- 'provider/appconfig'
- 'provider/s3'
- 'provider/parameterstore'
- 'notifier/sns'
- 'provider/azappconfig'
- 'provider/azblob'
- 'notifier/azservicebus'
- 'provider/secretmanager'
- 'provider/gcs'
- 'notifier/pubsub'
go-version: [ 'stable', 'oldstable' ]
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache-dependency-path: "**/go.sum"
- name: Race Test
run: go test -v -shuffle=on -count=10 -race ./...
working-directory: ${{ matrix.module }}
- name: Test
run: go test -shuffle=on -v ./...
working-directory: ${{ matrix.module }}
all:
if: ${{ always() }}
runs-on: ubuntu-latest
name: All Tests
needs: test
steps:
- name: Check test matrix status
if: ${{ needs.test.result != 'success' }}
run: exit 1