Shorter names for CI

This commit is contained in:
Thomas Pelletier
2021-03-25 21:14:59 -04:00
parent f4ac7f7bfa
commit 47611ff9ea
+3 -3
View File
@@ -1,4 +1,4 @@
name: build-test
name: test
on:
push:
branches:
@@ -11,10 +11,10 @@ jobs:
os: [ 'ubuntu-latest', 'windows-latest', 'macos-latest']
go: [ '1.15', '1.16' ]
runs-on: ${{ matrix.os }}
name: Test on ${{ matrix.os }} with Go ${{ matrix.go }}
name: ${{ matrix.os }}/${{ matrix.go }}
steps:
- uses: actions/checkout@master
- name: Setup go
- name: Setup go ${{ matrix.go }}
uses: actions/setup-go@master
with:
go-version: ${{ matrix.go }}