Skip to content

fix(deps): update rust crate pyo3 to 0.23.0 #214

fix(deps): update rust crate pyo3 to 0.23.0

fix(deps): update rust crate pyo3 to 0.23.0 #214

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@0ad4b8fadaa221de15dcec353f45205ec38ea70b # 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