Skip to content
This repository has been archived by the owner on Nov 12, 2023. It is now read-only.

Bump pyo3 from 0.17.3 to 0.20.0 #11

Bump pyo3 from 0.17.3 to 0.20.0

Bump pyo3 from 0.17.3 to 0.20.0 #11

Workflow file for this run

name: Rust CI
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
lint:
uses: darbiadev/.github/.github/workflows/rust-lint.yaml@main
clippy:
needs: lint
uses: darbiadev/.github/.github/workflows/rust-clippy.yaml@main
test:
needs: clippy
strategy:
matrix:
triple:
- {
os: "ubuntu-latest",
target: "x86_64-unknown-linux-gnu",
}
- {
os: "macOS-latest",
target: "x86_64-apple-darwin",
}
- {
os: "windows-latest",
target: "x86_64-pc-windows-msvc",
}
uses: darbiadev/.github/.github/workflows/rust-test.yaml@main
with:
os: ${{ matrix.triple.os }}
target: ${{ matrix.triple.target }}