chore(deps): update rust crate tracing to v0.1.44 #101
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: | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| fmt: | |
| name: Rustfmt | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@1.89.0 | |
| with: | |
| components: rustfmt | |
| - name: Check formatting | |
| run: cargo fmt --all -- --check | |
| clippy: | |
| name: Clippy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@1.89.0 | |
| with: | |
| components: clippy | |
| - name: Clippy | |
| run: cargo clippy --all-targets --all-features -- -D warnings | |
| test: | |
| name: Test (${{ matrix.os }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@1.89.0 | |
| - name: Run tests | |
| run: cargo test --all-features --workspace | |
| docs: | |
| name: Docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@1.89.0 | |
| - name: Check documentation | |
| env: | |
| RUSTDOCFLAGS: -D warnings | |
| run: cargo doc --no-deps --all-features --workspace | |
| conformance: | |
| name: Sigstore Conformance | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@1.89.0 | |
| - name: Build binaries | |
| run: | | |
| cargo build --release --package sigstore-conformance | |
| cargo build --release --example verify_bundle | |
| - uses: sigstore/sigstore-conformance@main | |
| with: | |
| entrypoint: ./target/release/conformance | |
| - name: Upload verify_bundle binary | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: verify_bundle | |
| path: target/release/examples/verify_bundle | |
| mutation-tests: | |
| name: Mutation Fuzzing | |
| runs-on: ubuntu-latest | |
| needs: conformance | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.14' | |
| - name: Download verify_bundle binary | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: verify_bundle | |
| path: target/release/examples | |
| - name: Make binary executable | |
| run: chmod +x target/release/examples/verify_bundle | |
| - name: Clone sigstore-conformance test data | |
| run: git clone --depth 1 https://github.com/sigstore/sigstore-conformance.git | |
| - name: Run mutation fuzzer | |
| run: python3 tests/mutation_fuzzer.py --verifier-type rust |