Skip to content

bump actions to latest #1469

bump actions to latest

bump actions to latest #1469

Workflow file for this run

name: Build
on:
pull_request:
branches: ['main']
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.19, 1.20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- run: |
go build ./...
go test -run=^$ ./...