go-satel/.build.yml

18 wiersze
311 B
YAML
Czysty Zwykły widok Historia

2024-03-04 19:24:50 +00:00
image: alpine/latest
packages:
- go
tasks:
- go-get: |
cd go-satel
go get -t
2024-03-05 20:28:51 +00:00
- precommit: |
cd go-satel
python3 -m venv .venv
source .venv/bin/activate
pip3 install pre-commit
pre-commit install
pre-commit run -a
2024-03-04 19:24:50 +00:00
- test: |
cd go-satel
2024-03-05 20:28:51 +00:00
go test