orchid/.github/workflows/test.yml

16 lines
325 B
YAML
Raw Normal View History

2023-06-21 23:09:33 +01:00
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
2024-04-15 16:28:55 +01:00
go-version: [1.22.x]
2023-06-21 23:09:33 +01:00
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v3
- run: go build ./cmd/orchid/
- run: go test ./...