-
Notifications
You must be signed in to change notification settings - Fork 55
49 lines (42 loc) · 1.13 KB
/
standard-go-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
name: Standard Test
on:
push:
branches: [main]
pull_request:
jobs:
dependency-review:
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Dependency Review
uses: actions/dependency-review-action@v1
standard-go-test:
name: go${{ matrix.go-version }}/${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version:
- "1.22"
os:
- "ubuntu-latest"
- "macos-latest"
- "windows-latest"
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Test
if: ${{ matrix.os != 'windows-latest' }}
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: 0
run: |
go test -v -p 1 -race -cover -tags "sqlite,integration" ./...
- name: Short Test
if: ${{ matrix.os == 'windows-latest' }}
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: 0
run: |
go test -v -p 1 -tags "sqlite,integration" ./...