Bump pyasn1 from 0.6.2 to 0.6.3 #1084
Workflow file for this run
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 Style | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| ruff: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.11' | |
| - name: Install uv and set the Python version | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| python-version: '3.11' | |
| enable-cache: true | |
| - name: Install dev dependencies | |
| run: | | |
| EXTRAS="--extra dev" | |
| uv sync --locked ${EXTRAS} | |
| - name: Check code style with ruff | |
| run: | | |
| set -o errexit | |
| uv run ruff check --fix . --config ./pyproject.toml | |
| uv run ruff format . --config ./pyproject.toml |