event graph pybindings with pyo3 0.22.6, and pyo3-async-runtimes 0.22 #183
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nightly lints | |
# We only run these on trial-merges of PRs to reduce noise. | |
on: pull_request | |
jobs: | |
clippy: | |
name: Clippy (nightly) | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
components: clippy | |
override: true | |
- name: Run Clippy | |
uses: actions-rs/clippy-check@v1 | |
with: | |
name: Clippy (stable) | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --all-features --release -- -D warnings |