lotus/.github/workflows/test.yml

16 lines
336 B
YAML
Raw Normal View History

2023-08-13 03:04:16 +01:00
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
2023-08-21 00:26:22 +01:00
- run: go build ./cmd/lotus/
2023-08-13 03:04:16 +01:00
- run: go test ./...