1
0
Fork 0
mirror of https://github.com/Luzifer/go_helpers.git synced 2024-10-18 14:24:20 +00:00
go_helpers/.github/workflows/test.yml

35 lines
482 B
YAML
Raw Normal View History

---
name: test-and-build
on: [push]
jobs:
test:
strategy:
fail-fast: false
matrix:
go_version:
- '1.18'
- '1.19'
- 'latest'
defaults:
run:
shell: sh
container:
image: golang:${{ matrix.go_version }}
env:
CGO_ENABLED: 0
GOPATH: /go
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Test code
run: go test -v -cover ./...
...