Files
go-toml/.github/workflows/workflow.yml
T
2021-03-25 21:05:07 -04:00

21 lines
385 B
YAML

name: build-test
on:
push:
branches:
- v2-wip
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.15', '1.16' ]
name: Test on ${{ matrix.go }}
steps:
- uses: actions/checkout@master
- name: Setup go
uses: actions/setup-go@master
with:
go-version: ${{ matrix.go }}
- run: go test ./...