Skip to content

Commit

Permalink
coms: Add comments to explain specific steps in the .github/workflows…
Browse files Browse the repository at this point in the history
…/build.yml.
  • Loading branch information
gkapfham committed Aug 22, 2024
1 parent 7946fd6 commit 86ffdd5
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,17 @@ jobs:
- name: Run Linters
if: always()
run: |
# install ruff directly instead of managing
# it as a dependency with Poetry since ruff
# does not (currently) install correctly
# through Poetry on NixOS
pipx install ruff
poetry run task lint
# Run the tests
- name: Run Tests
if: always()
run: |
# do not run the Hypothesis-based fuzz tests
# because they sometimes take longer to run
# on Windows and MacOS and this creates errors
poetry run task test-not-fuzz

0 comments on commit 86ffdd5

Please sign in to comment.