mirror of
https://github.com/spf13/viper.git
synced 2024-12-27 14:11:34 -07:00
Add github actions workflow
This commit is contained in:
parent
fae3a81867
commit
78a0e37a24
2
.github/workflows/.editorconfig
vendored
Normal file
2
.github/workflows/.editorconfig
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
[*.yml]
|
||||||
|
indent_size = 2
|
35
.github/workflows/ci.yml
vendored
Normal file
35
.github/workflows/ci.yml
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
name: CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
max-parallel: 10
|
||||||
|
matrix:
|
||||||
|
go: ['1.11', '1.12', '1.13']
|
||||||
|
env:
|
||||||
|
VERBOSE: 1
|
||||||
|
GOFLAGS: -mod=readonly
|
||||||
|
GOPROXY: https://proxy.golang.org
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Set up Go
|
||||||
|
uses: actions/setup-go@v1
|
||||||
|
with:
|
||||||
|
go-version: ${{ matrix.go }}
|
||||||
|
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
|
||||||
|
- name: Run tests
|
||||||
|
run: make test
|
||||||
|
|
||||||
|
- name: Run linter
|
||||||
|
run: make lint
|
Loading…
Reference in New Issue
Block a user