Skip to content

Use f64 instead of u64 for places where bindgen is expecting `Big… #32

Use f64 instead of u64 for places where bindgen is expecting `Big…

Use f64 instead of u64 for places where bindgen is expecting `Big… #32

Workflow file for this run

on: [push, pull_request]
name: check
jobs:
stable:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- run: cargo fmt --all -- --check
- run: cargo clippy --all-features -- -D warnings
- run: cargo test --all-features
nightly:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy, rustfmt
- run: cargo fmt --all -- --check
- run: cargo clippy --all-features -- -D warnings
- run: cargo test --all-features