Skip to content

Commit

Permalink
ultimate fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonkoehn committed Nov 12, 2024
1 parent c95f26c commit 3dba6ac
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/poetry-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Run black formatting check
uses: psf/black@stable

- name: Set up Conda
uses: conda-incubator/setup-miniconda@v2
with:
Expand All @@ -39,3 +42,24 @@ jobs:
source $(conda info --base)/etc/profile.d/conda.sh
conda activate myenv
poetry run pytest
- name: Run unit tests
run: poetry run pytest

- name: Run Ruff
run: |
source $(conda info --base)/etc/profile.d/conda.sh
conda activate myenv
poetry run ruff check .
- name: Run interrogate
run: |
source $(conda info --base)/etc/profile.d/conda.sh
conda activate myenv
poetry run interrogate src
- name: Run Pyright (type checking)
run: |
source $(conda info --base)/etc/profile.d/conda.sh
conda activate myenv
poetry run pyright

0 comments on commit 3dba6ac

Please sign in to comment.