Skip to content
This repository was archived by the owner on Jul 29, 2026. It is now read-only.

Merge pull request #801 from kddejong/readme/deprecation-notice #1227

Merge pull request #801 from kddejong/readme/deprecation-notice

Merge pull request #801 from kddejong/readme/deprecation-notice #1227

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
name: Unit tests
env:
GOFLAGS: "-buildvcs=false"
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
container: golang:latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Lint
run: |
staticcheck ./...
go vet ./...
- name: Run unit tests
run: go test ./...