diff options
| author | Elizabeth Hunt <elizabeth@simponic.xyz> | 2024-09-02 23:59:48 -0700 |
|---|---|---|
| committer | Elizabeth Hunt <elizabeth@simponic.xyz> | 2024-09-02 23:59:48 -0700 |
| commit | c39367ac7e163395ae726bd169926004d4d99d67 (patch) | |
| tree | c551f15f3c6475638239b7ccf1d6992f375e9a57 /.drone.yml | |
| parent | 9f5e81327be33489d9bb912de503cd01d6ba7dca (diff) | |
| download | kennel.hatecomputers.club-c39367ac7e163395ae726bd169926004d4d99d67.tar.gz kennel.hatecomputers.club-c39367ac7e163395ae726bd169926004d4d99d67.zip | |
fix CI
Diffstat (limited to '.drone.yml')
| -rw-r--r-- | .drone.yml | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -4,12 +4,12 @@ type: docker name: build steps: - - name: run tests + - name: lint image: python:3.12 commands: - pip install poetry - poetry install --with main,dev - - poetry run pytest + - poetry run ruff check kennel/* trigger: event: @@ -21,12 +21,12 @@ type: docker name: deploy steps: - - name: run tests + - name: run lier image: python:3.12 commands: - pip install poetry - poetry install --with main,dev - - poetry run pytest + - poetry run ruff check kennel/* - name: docker image: plugins/docker settings: |
