Update to golang 1.19

This commit is contained in:
2022-08-11 20:00:25 +02:00
parent 88691a5149
commit 9763ed0e29
5 changed files with 55 additions and 24 deletions

View File

@ -11,19 +11,19 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
make: ["lint", "test"]
steps:
- uses: actions/checkout@v2.4.0
- name: install go
uses: actions/setup-go@v2
with:
go-version: "^1.18"
go-version: "^1.19"
- name: Lint
run: make lint
- name: Tests
run: make test
run: make ${{ matrix.make }}
deploy:
runs-on: ubuntu-latest