go-satel/.build.yml

18 wiersze
311 B
YAML

image: alpine/latest
packages:
- go
tasks:
- go-get: |
cd go-satel
go get -t
- precommit: |
cd go-satel
python3 -m venv .venv
source .venv/bin/activate
pip3 install pre-commit
pre-commit install
pre-commit run -a
- test: |
cd go-satel
go test