name: Rust on: push: branches: ["next"] pull_request: branches: ["main"] env: CARGO_TERM_COLOR: always jobs: build: runs-on: docker steps: - uses: actions/checkout@v4 - uses: https://github.com/actions-rs/toolchain@v1 with: toolchain: stable - uses: https://github.com/actions-rs/cargo@v1 with: command: build # args: --release --all-features - uses: https://github.com/actions-rs/cargo@v1 with: command: test # - name: Build # run: cargo build --verbose # - name: Run tests # run: cargo test --verbose