Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
emlowe committed Oct 25, 2024
1 parent a5dc1e1 commit 9b4ff72
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,21 @@ jobs:
with:
python-version: ${{ matrix.python.major_dot_minor }}

- uses: ./.github/actions/install
- name: Create virtual environment
uses: Chia-Network/actions/create-venv@main
id: create-venv

- name: Activate virtual environment
uses: Chia-Network/actions/activate-venv@main
with:
python-version: ${{ matrix.python.major_dot_minor }}
development: true
directories: ${{ steps.create-venv.outputs.activate-venv-directories }}

- uses: chia-network/actions/activate-venv@main
- name: Run poetry install
uses: Chia-Network/actions/poetry@main
with:
poetry-command: "install --with dev"

- env:
CHIA_MANAGE_CLVM_CHECK_USE_CACHE: "false"
CHIA_MANAGE_MYPY_CHECK_EXCLUSIONS: "true"
run: pre-commit run --all-files --verbose
run: poetry run pre-commit run --all-files --verbose

0 comments on commit 9b4ff72

Please sign in to comment.