Ondrej Vlach 947b247ce0
Some checks failed
Go Test / test (push) Failing after 2s
initial commit
2025-05-30 19:31:24 +02:00

20 lines
360 B
YAML

name: Go Test
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: github.com/actions/checkout@v4
- name: Set up Go
uses: github.com/actions/setup-go@v5
with:
go-version: '1.24.3'
- name: Run tests
run: go test -v ./...