Skip to content

Upgrade pyo3 to 0.19.2 #135

Upgrade pyo3 to 0.19.2

Upgrade pyo3 to 0.19.2 #135

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: cargo check
test:
name: Test Suite
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --benches --all
- run: cargo clean
if: matrix.os == 'ubuntu-latest'
- name: Run cargo-tarpaulin
uses: actions-rs/[email protected]
with:
args: --all
if: matrix.os == 'ubuntu-latest'
- name: Upload to codecov.io
uses: codecov/codecov-action@v3
if: matrix.os == 'ubuntu-latest'
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: cargo fmt --all -- --check