Skip to content

Update actions/checkout action to v6 #163

Update actions/checkout action to v6

Update actions/checkout action to v6 #163

Workflow file for this run

name: Build & Unit Test
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: 1.19
- name: Build
run: go build -v ./...
- name: Test
run: go test '-run=^Test' -v ./...