diff --git a/.github/workflows/x509-cert.yml b/.github/workflows/x509-cert.yml index 238e07aed..6d6a9162f 100644 --- a/.github/workflows/x509-cert.yml +++ b/.github/workflows/x509-cert.yml @@ -43,9 +43,25 @@ jobs: - run: cargo hack build --target ${{ matrix.target }} --feature-powerset --exclude-features std minimal-versions: - uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master - with: + runs-on: ubuntu-latest + defaults: + run: working-directory: ${{ github.workflow }} + shell: bash + steps: + - uses: actions/checkout@v3 + - uses: RustCrypto/actions/cargo-cache@master + - uses: actions-rs/toolchain@v1 + with: + toolchain: nightly-2022-11-21 + override: true + profile: minimal + - uses: RustCrypto/actions/cargo-hack-install@master + - name: Test benches build + run: cargo build --benches + - run: rm ../Cargo.toml + - run: cargo update -Z minimal-versions + - run: cargo hack test --release --feature-powerset test: runs-on: ubuntu-latest diff --git a/x509-cert/Cargo.toml b/x509-cert/Cargo.toml index 6241faf7d..2608cbe88 100644 --- a/x509-cert/Cargo.toml +++ b/x509-cert/Cargo.toml @@ -36,3 +36,5 @@ pem = ["alloc", "der/pem"] [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] + +