[actions] always build/test with go1.16 + rename travis target

This commit is contained in:
max furman 2021-02-18 19:13:09 -08:00
parent 8921a2e8bf
commit 836f68979c
3 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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

View file

@ -18,7 +18,7 @@ OUTPUT_ROOT=output/
all: lint test build
travis: lintcgo testcgo build
ci: lintcgo testcgo build
.PHONY: all travis