chore: upgrade to Rust 2024 edition #202
Workflow file for this run
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: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: true | |
| env: | |
| RUST_BACKTRACE: 1 | |
| RUSTFLAGS: -Dwarnings | |
| permissions: | |
| contents: read | |
| jobs: | |
| # Depends on all actions that are required for a "successful" CI run. | |
| tests-pass: | |
| name: all checks successful | |
| runs-on: ubuntu-latest | |
| needs: | |
| - fmt | |
| - clippy | |
| - msrv | |
| - doc | |
| - test-all-features | |
| - test-default-features | |
| - test-no-std | |
| steps: | |
| - run: exit 0 | |
| clippy: | |
| name: Clippy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| - name: Install stable toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| override: true | |
| - name: Run cargo clippy | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: clippy | |
| args: --all-features | |
| - uses: Swatinem/rust-cache@v2 | |
| fmt: | |
| name: Rustfmt check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| - name: Install nightly toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: nightly | |
| components: rustfmt | |
| - run: cargo +nightly fmt --check --all | |
| - uses: Swatinem/rust-cache@v2 | |
| test-all-features: | |
| name: Run tests for all features | |
| runs-on: ${{ matrix.os }} | |
| needs: | |
| - fmt | |
| - clippy | |
| - msrv | |
| - doc | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| - windows-latest | |
| rust: | |
| - stable | |
| - beta | |
| - nightly | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| - name: Install toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: ${{ matrix.rust }} | |
| override: true | |
| - name: Run cargo test | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: test | |
| args: --all-features --no-fail-fast | |
| - uses: Swatinem/rust-cache@v2 | |
| test-default-features: | |
| name: Test with default features | |
| runs-on: ubuntu-latest | |
| needs: | |
| - fmt | |
| - clippy | |
| - msrv | |
| - doc | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| - name: Install toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| override: true | |
| - name: Run cargo test | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: test | |
| - uses: Swatinem/rust-cache@v2 | |
| test-no-std: | |
| name: Test no-std support | |
| runs-on: ubuntu-latest | |
| needs: | |
| - fmt | |
| - clippy | |
| - msrv | |
| - doc | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| - name: Install toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| override: true | |
| - name: Run cargo test | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: test | |
| args: --no-default-features --features "colored, float-cmp, num-bigint, recursive, regex, rust-decimal, bigdecimal" | |
| - uses: Swatinem/rust-cache@v2 | |
| msrv: | |
| name: Build with MSRV | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| - name: Get current MSRV from Cargo.toml | |
| id: current_msrv | |
| run: | | |
| msrv=$(cat Cargo.toml | grep rust-version | sed 's/.* = "//; s/"//') | |
| echo "msrv=$msrv" >> $GITHUB_OUTPUT | |
| - name: Install MSRV toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: ${{ steps.current_msrv.outputs.msrv }} | |
| override: true | |
| - name: Run cargo build | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: build | |
| args: --all-features | |
| env: | |
| RUSTFLAGS: "" # remove -Dwarnings | |
| doc: | |
| name: API Docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| - name: Install stable toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: nightly | |
| override: true | |
| - name: Run cargo doc | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: doc | |
| args: --all-features --no-deps | |
| - uses: Swatinem/rust-cache@v2 |