Shorter names for CI
This commit is contained in:
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user