Skip to content

chore(deps): Pin dependencies (#350) #860

chore(deps): Pin dependencies (#350)

chore(deps): Pin dependencies (#350) #860

Workflow file for this run

name: "Unit tests"
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
unitests:
timeout-minutes: 30
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Set up Go 1.x
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6
with:
go-version-file: go.mod
- run: go mod download
- run: go build ./...
- name: Run tests
run: make test