spf13--viper/.github/workflows/ci.yml

54 lines
1 KiB
YAML
Raw Normal View History

2019-12-06 11:22:07 +00:00
name: CI
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
2019-12-06 11:22:07 +00:00
strategy:
# Fail fast is disabled because there are Go version specific features and tests
# that should be able to fail independently.
fail-fast: false
2019-12-06 11:22:07 +00:00
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go: ['1.14', '1.15', '1.16', '1.17']
2019-12-06 11:22:07 +00:00
env:
GOFLAGS: -mod=readonly
steps:
- name: Set up Go
2020-05-09 09:42:39 +00:00
uses: actions/setup-go@v2
2019-12-06 11:22:07 +00:00
with:
go-version: ${{ matrix.go }}
- name: Checkout code
2020-01-16 18:27:10 +00:00
uses: actions/checkout@v2
2019-12-06 11:22:07 +00:00
- name: Test
run: go test -race -v ./...
lint:
name: Lint
runs-on: ubuntu-latest
env:
GOFLAGS: -mod=readonly
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Checkout code
uses: actions/checkout@v2
2020-05-09 09:42:39 +00:00
- name: Lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.43.0