feat(env_filter): support no_std #443
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 | ||
| permissions: | ||
| contents: read | ||
| on: | ||
| pull_request: | ||
| push: | ||
| branches: | ||
| - main | ||
| env: | ||
| RUST_BACKTRACE: 1 | ||
| CARGO_TERM_COLOR: always | ||
| CLICOLOR: 1 | ||
| concurrency: | ||
| group: "${{ github.workflow }}-${{ github.ref }}" | ||
| cancel-in-progress: true | ||
| jobs: | ||
| ci: | ||
| permissions: | ||
| contents: none | ||
| name: CI | ||
| needs: [test, msrv, lockfile, docs, rustfmt, clippy, minimal-versions] | ||
| runs-on: ubuntu-latest | ||
| if: "always()" | ||
| steps: | ||
| - name: Failed | ||
| run: exit 1 | ||
| if: "contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') || contains(needs.*.result, 'skipped')" | ||
| test: | ||
| name: Test | ||
| strategy: | ||
| matrix: | ||
| os: ["ubuntu-latest", "windows-latest", "macos-latest"] | ||
| rust: ["stable"] | ||
| continue-on-error: ${{ matrix.rust != 'stable' }} | ||
| runs-on: ${{ matrix.os }} | ||
| env: | ||
| # Reduce amount of data cached | ||
| CARGO_PROFILE_DEV_DEBUG: line-tables-only | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v6 | ||
| - name: Install Rust | ||
| uses: dtolnay/rust-toolchain@stable | ||
| with: | ||
| toolchain: ${{ matrix.rust }} | ||
| - uses: Swatinem/rust-cache@v2 | ||
| - uses: taiki-e/install-action@cargo-hack | ||
| - name: Build | ||
| run: cargo test --workspace --no-run | ||
| - name: Test | ||
| run: cargo hack test --each-feature --workspace | ||
| - name: Run crate example | ||
| run: cargo run --example default | ||
| msrv: | ||
| name: "Check MSRV" | ||
| strategy: | ||
| matrix: | ||
| os: ["ubuntu-latest"] | ||
| runs-on: ${{ matrix.os }} | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v6 | ||
| - name: Install Rust | ||
| uses: dtolnay/rust-toolchain@stable | ||
| with: | ||
| toolchain: stable | ||
| - uses: Swatinem/rust-cache@v2 | ||
| - uses: taiki-e/install-action@cargo-hack | ||
| - name: Default features | ||
| run: | ||
| - cargo hack check --each-feature --locked --rust-version --ignore-private --package env_logger --all-targets --keep-going | ||
| # When the std feature is enabled, a lower MSRV of 1.71 is sufficient and was the MSRV for the crate before std was made optional. | ||
| # To make sure we keep it that way, check configurations with std enabled and disabled separately and with their respective MSRVs. | ||
| # "--at-least-one-of" requires "--feature-powerset", which can be made to emulate "--each-feature" with "--depth 1". | ||
| - cargo hack check --feature-powerset --depth 1 --locked --version-range 1.71..=1.71 --ignore-private --package env_filter --all-targets --keep-going --at-least-one-of std,default,regex | ||
| - cargo hack check --no-default-features --locked --version-range 1.81..=1.81 --ignore-private --package env_filter --all-targets --keep-going | ||
| minimal-versions: | ||
| name: Minimal versions | ||
| strategy: | ||
| matrix: | ||
| os: ["ubuntu-latest"] | ||
| runs-on: ${{ matrix.os }} | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v6 | ||
| - name: Install stable Rust | ||
| uses: dtolnay/rust-toolchain@stable | ||
| with: | ||
| toolchain: stable | ||
| - name: Install nightly Rust | ||
| uses: dtolnay/rust-toolchain@stable | ||
| with: | ||
| toolchain: nightly | ||
| - name: Downgrade dependencies to minimal versions | ||
| run: cargo +nightly generate-lockfile -Z minimal-versions | ||
| - name: Compile with minimal versions | ||
| run: cargo +stable check --workspace --all-features --locked --keep-going | ||
| lockfile: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v6 | ||
| - name: Install Rust | ||
| uses: dtolnay/rust-toolchain@stable | ||
| with: | ||
| toolchain: stable | ||
| - uses: Swatinem/rust-cache@v2 | ||
| - name: "Is lockfile updated?" | ||
| run: cargo update --workspace --locked | ||
| docs: | ||
| name: Docs | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v6 | ||
| - name: Install Rust | ||
| uses: dtolnay/rust-toolchain@stable | ||
| with: | ||
| toolchain: "1.94" # STABLE | ||
| - uses: Swatinem/rust-cache@v2 | ||
| - name: Check documentation | ||
| env: | ||
| RUSTDOCFLAGS: -D warnings | ||
| run: cargo doc --workspace --all-features --no-deps --document-private-items --keep-going | ||
| rustfmt: | ||
| name: rustfmt | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v6 | ||
| - name: Install Rust | ||
| uses: dtolnay/rust-toolchain@stable | ||
| with: | ||
| toolchain: "1.94" # STABLE | ||
| components: rustfmt | ||
| - uses: Swatinem/rust-cache@v2 | ||
| - name: Check formatting | ||
| run: cargo fmt --check | ||
| clippy: | ||
| name: clippy | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| security-events: write # to upload sarif results | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v6 | ||
| - name: Install Rust | ||
| uses: dtolnay/rust-toolchain@stable | ||
| with: | ||
| toolchain: "1.94" # STABLE | ||
| components: clippy | ||
| - uses: Swatinem/rust-cache@v2 | ||
| - name: Install SARIF tools | ||
| run: cargo install clippy-sarif --locked | ||
| - name: Install SARIF tools | ||
| run: cargo install sarif-fmt --locked | ||
| - name: Check | ||
| run: > | ||
| cargo clippy --workspace --all-features --all-targets --message-format=json | ||
| | clippy-sarif | ||
| | tee clippy-results.sarif | ||
| | sarif-fmt | ||
| continue-on-error: true | ||
| - name: Upload | ||
| uses: github/codeql-action/upload-sarif@v4 | ||
| with: | ||
| sarif_file: clippy-results.sarif | ||
| wait-for-processing: true | ||
| - name: Report status | ||
| run: cargo clippy --workspace --all-features --all-targets --keep-going -- -D warnings --allow deprecated | ||
| coverage: | ||
| name: Coverage | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v6 | ||
| - name: Install Rust | ||
| uses: dtolnay/rust-toolchain@stable | ||
| with: | ||
| toolchain: stable | ||
| - uses: Swatinem/rust-cache@v2 | ||
| - name: Install cargo-tarpaulin | ||
| run: cargo install cargo-tarpaulin | ||
| - name: Gather coverage | ||
| run: cargo tarpaulin --output-dir coverage --out lcov | ||
| - name: Publish to Coveralls | ||
| uses: coverallsapp/github-action@master | ||
| with: | ||
| github-token: ${{ secrets.GITHUB_TOKEN }} | ||