lavender/.github/workflows/test.yml

16 lines
325 B
YAML
Raw Normal View History

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
2024-02-09 22:42:08 +00:00
go-version: [1.22.x]
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v3
2025-01-10 18:08:52 +00:00
- run: make build
- run: go test ./...