Skip to content

Merge pull request #47 from RobinAngele/fix/orphaned-crawl-record-on-… #208

Merge pull request #47 from RobinAngele/fix/orphaned-crawl-record-on-…

Merge pull request #47 from RobinAngele/fix/orphaned-crawl-record-on-… #208

Workflow file for this run

name: Test
on:
push:
branches:
- '**'
jobs:
test:
strategy:
matrix:
go: [1.25.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
GOFLAGS: -mod=readonly
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Checkout code
uses: actions/checkout@v5
- name: Test
run: go test -race -parallel 1 -short ./internal/...
- name: Build
run: go build -race ./cmd/server/main.go