bluebell/.github/workflows/test.yml

16 lines
327 B
YAML
Raw Normal View History

2023-07-22 00:59:45 +01:00
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
2024-06-06 12:11:57 +01:00
go-version: [1.22.x]
2023-07-22 00:59:45 +01:00
runs-on: ubuntu-latest
steps:
2024-06-06 12:11:57 +01:00
- uses: actions/setup-go@v5
2023-07-22 00:59:45 +01:00
with:
go-version: ${{ matrix.go-version }}
2024-06-06 12:11:57 +01:00
- uses: actions/checkout@v4
2024-08-16 20:17:10 +01:00
- run: go build ./cmd/bluebell/
2023-07-22 00:59:45 +01:00
- run: go test ./...