mirror of
https://github.com/1f349/orchid.git
synced 2024-11-09 23:02:53 +00:00
16 lines
325 B
YAML
16 lines
325 B
YAML
|
on: [push, pull_request]
|
||
|
name: Test
|
||
|
jobs:
|
||
|
test:
|
||
|
strategy:
|
||
|
matrix:
|
||
|
go-version: [1.20.x]
|
||
|
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 ./...
|