Skip to content

Change u32 to i32 to prevent subtraction overflow (#5) #868

Change u32 to i32 to prevent subtraction overflow (#5)

Change u32 to i32 to prevent subtraction overflow (#5) #868

Workflow file for this run

name: Checks
on:
push:
branches: main
pull_request:
branches: main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup install nightly --profile default
- run: rustup default nightly
- run: cargo fmt --check -- `find . -name "*.rs"`
- run: cargo clippy --all-targets --all-features -- --deny warnings
test-stable:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup default 1.84
- run: cargo test
test-nightly:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup default nightly
- run: cargo test --features simd