Add test workflow

This commit is contained in:
Melon 2024-12-24 00:03:10 +00:00
parent 708640f8a0
commit 1026af286f
Signed by: melon
GPG Key ID: 6C9D970C50D26A25

14
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,14 @@
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.23.x]
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v4
- run: go test ./...