jwt/.github/workflows/build.yml

41 lines
842 B
YAML
Raw Normal View History

2021-05-27 15:50:10 +03:00
name: build
on:
push:
branches:
- main
2021-05-27 15:50:10 +03:00
pull_request:
types: [opened, synchronize, reopened]
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: reviewdog/action-staticcheck@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
filter_mode: nofilter
fail_on_error: true
2021-05-27 15:50:10 +03:00
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
2021-05-27 15:50:10 +03:00
matrix:
2021-08-17 11:05:04 +03:00
go: [1.15, 1.16, 1.17]
2021-05-27 15:50:10 +03:00
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: "${{ matrix.go }}"
2021-05-27 15:50:10 +03:00
- name: Build
run: |
go vet ./...
go test -v ./...
go build ./...