Attempt to fix the build testing error.
This commit is contained in:
committed by
Christian Goll
parent
aadfdfe1e6
commit
cf03d7ef69
9
.github/workflows/test.yml
vendored
9
.github/workflows/test.yml
vendored
@@ -15,11 +15,16 @@ jobs:
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
go: [ '1.16', '1.17', '1.18' ]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Install Go
|
||||
- name: Setup go ${{ matrix.go }}
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: ${{ matrix.go }}
|
||||
|
||||
- uses: actions/cache@v2
|
||||
with:
|
||||
@@ -28,5 +33,5 @@ jobs:
|
||||
restore-keys: |
|
||||
${{ runner.os }}-go-
|
||||
|
||||
- name: Build
|
||||
- name: Build with go ${{ matrix.go }}
|
||||
run: make all
|
||||
|
||||
Reference in New Issue
Block a user