Skip to content

Commit

Permalink
Revert "Prep fix."
Browse files Browse the repository at this point in the history
This reverts commit 43ed383.
  • Loading branch information
DFINITYManu committed Jul 11, 2024
1 parent c7f9305 commit 69d6596
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ runs:
- name: "Prepare"
id: prep
run: |
make venv/bin venv/bin/mypy venv/bin/ruff venv/bin/pytest venv/lib/*/site-packages/mock
ret=0
out=$(make venv/bin venv/bin/mypy venv/bin/ruff venv/bin/pytest venv/lib/*/site-packages/mock 2>&1) || ret=$?
if [ $ret != 0 ]
then
echo "$out" >&2
exit $ret
fi
shell: bash

- name: "Ruff"
Expand Down

0 comments on commit 69d6596

Please sign in to comment.