Skip to content

Do not test tag pushes #6

Do not test tag pushes

Do not test tag pushes #6

Workflow file for this run

name: Tests
on:
push:
branches:
- '**'
tags-ignore:
- '**'
pull_request:
jobs:
test:
name: CI Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25'
cache: true
- name: Install just
uses: extractions/setup-just@v2
- name: Install staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Run CI checks
run: just ci