Skip to content

ci: pin GitHub Actions to commit SHAs #91

ci: pin GitHub Actions to commit SHAs

ci: pin GitHub Actions to commit SHAs #91

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Test
on: pull_request
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Set up Go
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6
with:
go-version-file: ./go.mod
- name: Build
run: go build -v ./...
- name: Run Unit Tests
run: make unit-test