Skip to content

BUILD/MINOR: ci: update github tooling #605

BUILD/MINOR: ci: update github tooling

BUILD/MINOR: ci: update github tooling #605

Workflow file for this run

name: go build
on:
pull_request:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
id: go
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: |
go build -v .