Skip to content

Fix index error

Fix index error #656

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: |
cargo clippy --all-features -- -D warnings
cargo clippy --no-default-features -- -D warnings
cargo test --all-features
cargo test --no-default-features