Skip to content

chore(Makefile): Update Makefile #116

chore(Makefile): Update Makefile

chore(Makefile): Update Makefile #116

Workflow file for this run

name: tests
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
env:
GOPROXY: "https://proxy.golang.org"
GO111MODULE: "on"
jobs:
test:
name: Test
strategy:
matrix:
go-version: [1.14.x, 1.15.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Run unit tests
run: |
# go mod init guanguans/id-validator
go test -v -race -coverprofile=coverage -covermode=atomic ./...
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage
flags: unittests
- name: Cache downloaded modules
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-