mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
ci: run ruff and mypy
Fixes: https://github.com/pimutils/vdirsyncer/issues/1194
This commit is contained in:
parent
2f4f4ac72b
commit
4c2c60402e
2 changed files with 8 additions and 0 deletions
|
|
@ -29,6 +29,9 @@ tasks:
|
|||
cd vdirsyncer
|
||||
make -e ci-test
|
||||
make -e ci-test-storage
|
||||
- check: |
|
||||
cd vdirsyncer
|
||||
make check
|
||||
- check-secrets: |
|
||||
# Stop here if this is a PR. PRs can't run with the below secrets.
|
||||
[ -f ~/fastmail-secrets ] || complete-build
|
||||
|
|
|
|||
5
Makefile
5
Makefile
|
|
@ -40,6 +40,11 @@ ci-test-storage:
|
|||
done
|
||||
bash $(CODECOV_PATH) -c
|
||||
|
||||
check:
|
||||
ruff check
|
||||
ruff format --diff
|
||||
#mypy vdirsyncer
|
||||
|
||||
release-deb:
|
||||
sh scripts/release-deb.sh debian jessie
|
||||
sh scripts/release-deb.sh debian stretch
|
||||
|
|
|
|||
Loading…
Reference in a new issue