Skip to content

chore(deps): bump actions/checkout from 3 to 4 #161

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

chore(deps): bump actions/checkout from 3 to 4 #161

Workflow file for this run

name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: go build
run: go build -v .
- name: go test
run: go test ./...