-
-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (35 loc) · 906 Bytes
/
ci.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
name: build
on:
push:
branches:
- main
pull_request:
jobs:
job-test:
name: Test
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Check out source code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: go.mod
- name: Run lint
if: matrix.platform == 'ubuntu-latest'
uses: reviewdog/action-golangci-lint@v2
- name: Test
if: matrix.platform != 'windows-latest'
run: make ci
- name: Test
if: matrix.platform == 'windows-latest'
run: |
go test ./...
go test ./... -tags integration
shell: cmd
- name: Run octocov
if: matrix.platform == 'ubuntu-latest'
uses: k1LoW/octocov-action@v0