mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-26 14:10:18 +01:00
31 lines
593 B
YAML
31 lines
593 B
YAML
name: test
|
|
on:
|
|
pull_request:
|
|
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
|
|
- 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 ./...
|