Skip to content

Update actions/checkout digest to a5ac7e5 #206

Update actions/checkout digest to a5ac7e5

Update actions/checkout digest to a5ac7e5 #206

Workflow file for this run

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