mirror of
https://github.com/spf13/viper
synced 2024-11-05 04:37:02 +00:00
077ee305c4
Signed-off-by: Mark Sagi-Kazar <mark.sagikazar@gmail.com>
38 lines
788 B
YAML
38 lines
788 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
# Fail fast is disabled because there are Go version specific features and tests
|
|
# that should be able to fail independently.
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
go: ['1.14', '1.15', '1.16', '1.17']
|
|
env:
|
|
VERBOSE: 1
|
|
GOFLAGS: -mod=readonly
|
|
GOPROXY: https://proxy.golang.org
|
|
|
|
steps:
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ${{ matrix.go }}
|
|
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Lint
|
|
run: make lint
|
|
|
|
- name: Test
|
|
run: make test
|