Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

test

test #224

Workflow file for this run

name: test
on:
push:
schedule:
- cron: '0 12 * * *'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version-file: go.mod
cache: true
- run: go mod download
# not running until go version 1.21.4 is available for golangci-lint
# - uses: golang/govulncheck-action@v1
- uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --timeout=3m
- run: go vet ./...
- run: go test -race ./...
- run: go build