2022-02-06 07:06:32 +00:00

26 lines
538 B
YAML

name: Go presubmit
on:
push:
branches:
- default
pull_request:
types: [opened, reopened, synchronize]
workflow_dispatch:
jobs:
build:
name: Go presubmit
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: ['1.16', '1.17']
os: ['ubuntu-latest']
steps:
- name: Install Go ${{ matrix.go-version }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v2
- uses: creachadair/go-presubmit-action@default