flourish-unsend: Replaced "Arc" with "Rc" #61
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
| # Rudimentary workflows adapted from <https://doc.rust-lang.org/cargo/guide/continuous-integration.html#verifying-rust-version>. | |
| name: Cargo Build & Test | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| pull_request: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build_and_test: | |
| name: Rust project - latest | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| toolchain: | |
| - stable | |
| - beta | |
| - nightly | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: rm rust-toolchain.toml # Remove the override for testing with other toolchains. | |
| - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} | |
| - run: cargo build --verbose | |
| - run: cargo test --verbose --features _test | |
| latest_deps: | |
| name: Latest Dependencies | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: rustup update stable | |
| - run: cargo update --verbose | |
| - run: cargo build --verbose | |
| - run: cargo test --verbose --features _test | |
| minimal_versions: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: nightly | |
| override: true | |
| - run: cargo update -Z minimal-versions | |
| - name: Checked for incompatible minimal versions | |
| run: cargo check --features _test | |
| msrv: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: taiki-e/install-action@cargo-hack | |
| - run: cargo hack check --rust-version --workspace --all-targets --features _test |