mirror of
https://github.com/1f349/tulip.git
synced 2024-11-09 22:42:53 +00:00
16 lines
324 B
YAML
16 lines
324 B
YAML
on: [push, pull_request]
|
|
name: Test
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.21.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/tulip/
|
|
- run: go test ./...
|