Skip to content

Bump pyasn1 from 0.6.2 to 0.6.3 #1084

Bump pyasn1 from 0.6.2 to 0.6.3

Bump pyasn1 from 0.6.2 to 0.6.3 #1084

Workflow file for this run

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