deprecated: Go 1.19 no longer supported

Go 1.19 will fail to build or pass the test once we bump up to the new version.
This commit is contained in:
Gaukas Wang 2023-08-02 15:57:41 -06:00
parent 7c8eec05a3
commit 50b2f4d8dc
No known key found for this signature in database
GPG key ID: 9E2F8986D76F8B5D

View file

@ -1,28 +0,0 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
go_1_19:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.19'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...