Add patches for dependencies with TODOs in the docs. #634
Workflow file for this run
This file contains 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: Simple | |
on: | |
[push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
name: Rust ${{matrix.rust}} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
rust: [1.61.0] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{matrix.rust}} | |
- run: cargo check | |
- run: cargo build | |
- run: cargo test | |
test: | |
name: Rust ${{matrix.rust}} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
rust: [1.65.0, stable, beta, nightly] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{matrix.rust}} | |
- run: cargo check | |
- run: cargo test | |
- run: cargo test --features=radix,format,compact | |
- run: | | |
cd extras | |
cargo test | |
cargo test --features=radix,format,compact | |
check: | |
name: Lint code | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install latest nightly | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: nightly | |
components: rustfmt, clippy | |
- run: ci/check.sh |