mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +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
|
cd vdirsyncer
|
||||||
make -e ci-test
|
make -e ci-test
|
||||||
make -e ci-test-storage
|
make -e ci-test-storage
|
||||||
|
- check: |
|
||||||
|
cd vdirsyncer
|
||||||
|
make check
|
||||||
- check-secrets: |
|
- check-secrets: |
|
||||||
# Stop here if this is a PR. PRs can't run with the below secrets.
|
# Stop here if this is a PR. PRs can't run with the below secrets.
|
||||||
[ -f ~/fastmail-secrets ] || complete-build
|
[ -f ~/fastmail-secrets ] || complete-build
|
||||||
|
|
|
||||||
5
Makefile
5
Makefile
|
|
@ -40,6 +40,11 @@ ci-test-storage:
|
||||||
done
|
done
|
||||||
bash $(CODECOV_PATH) -c
|
bash $(CODECOV_PATH) -c
|
||||||
|
|
||||||
|
check:
|
||||||
|
ruff check
|
||||||
|
ruff format --diff
|
||||||
|
#mypy vdirsyncer
|
||||||
|
|
||||||
release-deb:
|
release-deb:
|
||||||
sh scripts/release-deb.sh debian jessie
|
sh scripts/release-deb.sh debian jessie
|
||||||
sh scripts/release-deb.sh debian stretch
|
sh scripts/release-deb.sh debian stretch
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue