Compare commits

...

2 Commits

Author SHA1 Message Date
aec64ea5f3 gitea-actions: Use pdm sync instead of install
Some checks failed
Ruff / ruff (push) Successful in 22s
Test / test (push) Failing after 3m50s
2024-02-17 13:58:07 -05:00
4a0ccdb8bc gitea-actions: Use empty string for github token 2024-02-17 13:58:04 -05:00

View File

@ -24,11 +24,12 @@ jobs:
with:
cache: true
python-version: ~3.11
token: ""
- name: Install apt dependencies
run: >-
sudo apt-get update &&
sudo apt-get -y install build-essential python3-dev libldap2-dev libsasl2-dev mariadb-client
- name: Install python dependencies
run: pdm install
run: pdm sync -d
- name: Run tests
run: pdm run ./manage.py test --parallel auto
run: pdm run -v ./manage.py test --parallel auto