Skip to content

Update index to include link to install page. (#141) #108

Update index to include link to install page. (#141)

Update index to include link to install page. (#141) #108

Workflow file for this run

name: Unit Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Go (from go.mod)
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version-file: go.mod
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test ./... -v