
- github.com/creachadair/otp to v0.4.0 - golang.org/x/crypto to v0.1.0 - Update go mod vendor - Update gofmt (changes from 1.19) - Update CI configuration. - Fix CI status badge. No functional changes.
26 lines
536 B
YAML
26 lines
536 B
YAML
name: Go presubmit
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
types: [opened, reopened, synchronize]
|
|
|
|
jobs:
|
|
build:
|
|
name: Go presubmit
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
go-version: ['1.17', '1.18', '1.19']
|
|
steps:
|
|
- name: Install Go ${{ matrix.go-version }}
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
- uses: actions/checkout@v3
|
|
- uses: creachadair/go-presubmit-action@v1
|
|
with:
|
|
staticcheck-version: "2022.1.3"
|