Skip to content

Bump actions/setup-go from 4 to 5 in the github-actions group (#35) #9

Bump actions/setup-go from 4 to 5 in the github-actions group (#35)

Bump actions/setup-go from 4 to 5 in the github-actions group (#35) #9

Workflow file for this run

name: "Test"
on:
# TODO: move to "main" branch
push:
branches:
- "master"
pull_request:
branches:
- "master"
jobs:
run:
name: "Go"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "Setup Go"
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: "Build"
run: |
go build -v ./...
- name: "Test"
run: |
go test -v ./...