chore(deps-dev): bump cryptography from 46.0.5 to 46.0.7 #108
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Code Quality Checks | |
| # This workflow runs static analysis that doesn't require secrets | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| push: | |
| branches: | |
| - main | |
| env: | |
| PYTHON_VERSION: "3.11" | |
| jobs: | |
| checks: | |
| name: Code Quality Checks | |
| runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }} | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: "Checkout PR Code" | |
| uses: actions/checkout@v4 | |
| - name: "Install uv" | |
| uses: astral-sh/setup-uv@v3 | |
| with: | |
| version: "latest" | |
| enable-cache: true | |
| - name: "Set up Python" | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| - name: "Run Ruff Linter" | |
| run: uv run ruff check --output-format=github . | |
| - name: "Run Ruff Formatter Check" | |
| run: uv run ruff format --check --diff . | |
| - name: "Run ty Type Check" | |
| run: uv run ty check --output-format github --python-version ${{ env.PYTHON_VERSION }} . |