Files
go-toml/.github/workflows/workflow.yml
T
Thomas Pelletier 47611ff9ea Shorter names for CI
2021-03-25 21:14:59 -04:00

22 lines
473 B
YAML

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