require Go 1.19 (#46)

Signed-off-by: Jordan Whited <jordan@jordanwhited.com>
This commit is contained in:
Jordan Whited
2022-12-17 19:31:29 -08:00
committed by GitHub
parent e7a5fe367e
commit 06de26a522
6 changed files with 10 additions and 23 deletions

View File

@@ -1,14 +1,14 @@
name: build
on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]
jobs:
build:
strategy:
matrix:
go-version: [1.17.x]
go-version: [1.19.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:

View File

@@ -1,9 +1,9 @@
name: golangci-lint
on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]
jobs:
lint:
name: lint

View File

@@ -18,7 +18,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
go-version: 1.19
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2

View File

@@ -1,14 +1,14 @@
name: test
on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]
jobs:
test:
strategy:
matrix:
go-version: [1.17.x]
go-version: [1.19.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps: