Skip to content

Bump pyo3 from 0.22.4 to 0.22.5 #1442

Bump pyo3 from 0.22.4 to 0.22.5

Bump pyo3 from 0.22.4 to 0.22.5 #1442

Workflow file for this run

name: lint
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
lint:
name: linting
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
components: rustfmt, clippy
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets -- -D warnings