Skip to content

Merge branch 'morten/cache-userauth' #222

Merge branch 'morten/cache-userauth'

Merge branch 'morten/cache-userauth' #222

Workflow file for this run

name: Go tests
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
go: [1.22.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go ${{ matrix.go }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Run tests
run: go test ./...
- name: Run go vet
run: go vet ./...
- name: staticcheck
uses: dominikh/[email protected]
with:
install-go: false