Skip to content

Commit

Permalink
WIP: Fix PYVER envs
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaso committed May 12, 2024
1 parent 4633b8e commit 17b2f1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:
- name: Check ruff formating
run: .venv/bin/ruff format --diff vault_oidc_ssh_cert_action.py
env:
PYVER: steps.detect.outputs.pyver
PYVER: ${{ steps.detect.outputs.pyver }}

- name: Check ruff linting
run: .venv/bin/ruff check vault_oidc_ssh_cert_action.py
env:
PYVER: steps.detect.outputs.pyver
PYVER: ${{ steps.detect.outputs.pyver }}

- name: Check type hints
run: .venv/bin/mypy --strict vault_oidc_ssh_cert_action.py
Expand Down

0 comments on commit 17b2f1e

Please sign in to comment.