transfer.sh/.github/workflows/test.yml

32 lines
593 B
YAML
Raw Normal View History

name: test
on:
2021-05-21 17:16:43 +02:00
pull_request:
2021-05-21 17:20:45 +02:00
branches:
- "*"
push:
branches:
- "*"
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go_version:
- 1.13.x
- 1.14.x
- 1.15.x
- 1.16.x
2021-10-26 19:34:40 +02:00
- 1.17.x
name: Test with ${{ matrix.go_version }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go_version }}
- name: Vet and test
run: |
go version
go vet ./...
go test ./...