Skip to content

Improved indexing and performance with RoomCoordinate and RoomXY #52

Improved indexing and performance with RoomCoordinate and RoomXY

Improved indexing and performance with RoomCoordinate and RoomXY #52

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