Skip to content

chore(deps): update dependency maturin to >=1.8,<1.9 #221

chore(deps): update dependency maturin to >=1.8,<1.9

chore(deps): update dependency maturin to >=1.8,<1.9 #221

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black pytest pytest-asyncio
pip install .
- name: Checking code by black
run: black --check .
- name: Test with pytest
run: |
pytest