Skip to content

build(deps): bump actions/checkout from 3 to 4 #73

build(deps): bump actions/checkout from 3 to 4

build(deps): bump actions/checkout from 3 to 4 #73

Workflow file for this run

# 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 Build"
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ "ubuntu-latest", "windows-latest", "macos-latest" ]
go: [ "1.21.x", "1.22.x" ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- run: go version
- name: Build
run: go build -v ./...