-
-
Notifications
You must be signed in to change notification settings - Fork 179
30 lines (22 loc) · 566 Bytes
/
Copy pathtest.yml
File metadata and controls
30 lines (22 loc) · 566 Bytes
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
name: Test
on: push
jobs:
test:
strategy:
matrix:
go-version: [1.20.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Test
run: go test -shuffle=on -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Vet
run: go vet ./...
- name: Codecov
run: bash <(curl -s https://codecov.io/bash)