Separate editor viewport hit testing from rendering #40
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| quality: | |
| name: Rust quality checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install system dependencies | |
| run: sudo apt-get update -q && sudo apt-get install -y libasound2-dev | |
| - name: Show Rust toolchain | |
| run: rustup show | |
| - name: Check formatting | |
| run: cargo fmt --all -- --check | |
| - name: Check workspace | |
| run: cargo check --workspace | |
| - name: Run tests | |
| run: cargo test --workspace | |
| - name: Run clippy | |
| run: cargo clippy --workspace --all-targets -- -D warnings |