Skip to content

go.mod,.github: update dependencies #93

go.mod,.github: update dependencies

go.mod,.github: update dependencies #93

Workflow file for this run

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.21', 'stable']
steps:
- name: Install Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: true
- uses: actions/checkout@v4
- uses: creachadair/go-presubmit-action@v2