1
0
Fork 0

Add pre-commit to CI

This commit is contained in:
Michał Rudowicz 2024-02-11 14:41:18 +01:00
parent 901aa8cfd6
commit 349fe504ae
2 changed files with 12 additions and 3 deletions

View File

@ -1,10 +1,21 @@
image: alpine/latest
packages:
- go
- python3-dev
tasks:
- go-get: |
cd hswro-alarm-bot
go get -t
- precommit: |
cd hswro-alarm-bot
python3 -m venv .venv
source .venv/bin/activate
pip3 install pre-commit
pre-commit install
pre-commit run -a
- test: |
cd hswro-alarm-bot
go test --count=10000
- build-x86_64: |
cd hswro-alarm-bot
env GOOS=linux GOARCH=amd64 go build -o alarm_bot.x86-64
@ -20,9 +31,6 @@ tasks:
- build-arm8: |
cd hswro-alarm-bot
env GOOS=linux GOARCH=arm64 go build -o alarm_bot.arm8
- test: |
cd hswro-alarm-bot
go test --count=10000
artifacts:
- hswro-alarm-bot/alarm_bot.x86-64
- hswro-alarm-bot/alarm_bot.arm5

View File

@ -13,3 +13,4 @@ repos:
- id: go-fmt
args: [ -w ]
- id: go-vet-mod
- id: go-test-repo-mod