2021-01-08 17:28:15 +08:00
|
|
|
name: Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-01-12 16:11:28 +08:00
|
|
|
branches: [main]
|
2021-01-08 17:28:15 +08:00
|
|
|
pull_request:
|
|
|
|
env:
|
|
|
|
GOPROXY: "https://proxy.golang.org"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
name: Test
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-01-12 16:26:52 +08:00
|
|
|
go-version: [1.14.x, 1.15.x]
|
2021-01-08 17:28:15 +08:00
|
|
|
platform: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
|
|
steps:
|
|
|
|
- name: Install Go
|
|
|
|
uses: actions/setup-go@v1
|
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Run unit tests
|
|
|
|
run: |
|
2021-01-12 16:26:52 +08:00
|
|
|
# go mod init guanguans/id-validator
|
2021-01-08 17:28:15 +08:00
|
|
|
go test -v -race -coverprofile=coverage -covermode=atomic ./...
|
|
|
|
- name: Upload coverage report to Codecov
|
|
|
|
uses: codecov/codecov-action@v1.0.6
|
|
|
|
with:
|
|
|
|
file: ./coverage
|
|
|
|
flags: unittests
|
|
|
|
- name: Cache downloaded modules
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: |
|
2021-01-12 16:09:37 +08:00
|
|
|
${{ runner.os }}-go-
|