mirror of
https://github.com/LBRYFoundation/herald.go.git
synced 2025-09-20 18:09:45 +00:00
14 lines
No EOL
274 B
YAML
14 lines
No EOL
274 B
YAML
name: 'Build and Test Hub'
|
|
|
|
on:
|
|
push:
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-go@v2.1.3
|
|
with:
|
|
go-version: 1.16.5
|
|
- run: go build .
|
|
- run: cd server && go test -v -race |