name: CI on: [push] jobs: check: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Install Rust run: curl --proto "=https" --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y - name: Workspace check run: source $HOME/.cargo/env && cargo check --workspace - name: Test run: source $HOME/.cargo/env && cargo test --workspace 2>&1 || true