Skip to content

Bump clap_complete from 4.5.24 to 4.5.26 #322

Bump clap_complete from 4.5.24 to 4.5.26

Bump clap_complete from 4.5.24 to 4.5.26 #322

Workflow file for this run

name: Python
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Create a virtualenv
working-directory: python
run: |
python -m venv .venv
- name: Build the wrapper
uses: PyO3/maturin-action@v1
with:
working-directory: python
command: develop
args: -E dev
sccache: 'true'
- name: Run linter and formatter
working-directory: python
run: |
source .venv/bin/activate
ruff check
ruff format --check
- name: Run tests
working-directory: python
run: |
source .venv/bin/activate
pytest