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:
2023-12-04 16:39:41 +00:00
go-version: [1.21.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 ./...