Ondrej Vlach 0762c65972
Some checks failed
Go Test / test (push) Failing after 3s
initial commit
2025-05-30 19:30:39 +02:00

20 lines
338 B
YAML

name: Go Test
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
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.24.3'
- name: Run tests
run: go test -v ./...