jwt/.github/workflows/build.yml

28 lines
503 B
YAML
Raw Normal View History

2021-05-27 15:50:10 +03:00
name: build
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [1.14, 1.15, 1.16]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Build
run: |
go vet ./...
go test -v ./...
go build ./...