-
Notifications
You must be signed in to change notification settings - Fork 33
43 lines (39 loc) · 1.07 KB
/
tests.yaml
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
name: Tests
on: [ push, pull_request ]
jobs:
unit-scenario-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.17'
- name: Unit Test
run: go test -gcflags=-l -covermode=atomic -coverprofile=coverage.txt
- name: Codecov
run: bash <(curl -s https://codecov.io/bash)
benchmark-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.17'
- name: Benchmark
run: go test -gcflags='all=-N -l' -bench=. -benchmem -run=none
compatibility-test:
strategy:
matrix:
go: [1.13, 1.14, 1.15, 1.16, 1.18, 1.19, "1.20" ]
os: [ X64 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Unit Test
run: go test -gcflags=-l -covermode=atomic