-
Notifications
You must be signed in to change notification settings - Fork 9
47 lines (46 loc) · 1.22 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
name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
run-on: [ 'ubuntu', 'macOS', 'windows' ]
go-version: [ 'stable' ]
name: Test
runs-on: ${{ matrix.run-on }}-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Race Test
run: go test -v -shuffle=on -count=10 -race ./...
- name: Test
run: go test -v -shuffle=on ./...
- name: Race Test (file)
run: go test -v -shuffle=on -count=10 -race ./...
working-directory: provider/file
- name: Test (file)
run: go test -v -shuffle=on ./...
working-directory: provider/file
- name: Race Test (pflag)
run: go test -v -shuffle=on -count=10 -race ./...
working-directory: provider/pflag
- name: Test (pflag)
run: go test -v -shuffle=on ./...
working-directory: provider/pflag
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