forked from TrueCloudLab/certificates
[actions] always build/test with go1.16 + rename travis target
This commit is contained in:
parent
8921a2e8bf
commit
836f68979c
3 changed files with 4 additions and 4 deletions
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
@ -20,7 +20,7 @@ jobs:
|
|||
name: Setup Go
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: '^1.15.6'
|
||||
go-version: '^1.16.0'
|
||||
-
|
||||
name: Install Deps
|
||||
id: install-deps
|
||||
|
@ -28,7 +28,7 @@ jobs:
|
|||
-
|
||||
name: Lint, Test, Build
|
||||
id: lint_test_build
|
||||
run: V=1 make -j1 bootstrap travis
|
||||
run: V=1 make -j1 bootstrap ci
|
||||
-
|
||||
name: Is Pre-release
|
||||
id: is_prerelease
|
||||
|
|
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -18,7 +18,7 @@ jobs:
|
|||
- name: Setup Go
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: '^1.15.6'
|
||||
go-version: '^1.16.0'
|
||||
- name: Install Deps
|
||||
id: install-deps
|
||||
run: sudo apt-get -y install libpcsclite-dev
|
||||
|
|
2
Makefile
2
Makefile
|
@ -18,7 +18,7 @@ OUTPUT_ROOT=output/
|
|||
|
||||
all: lint test build
|
||||
|
||||
travis: lintcgo testcgo build
|
||||
ci: lintcgo testcgo build
|
||||
|
||||
.PHONY: all travis
|
||||
|
||||
|
|
Loading…
Reference in a new issue