Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Taowyoo committed Jan 9, 2024
1 parent 22015d0 commit 6073024
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,6 @@ jobs:
- rust: stable
target: x86_64-apple-darwin
os: macos-latest
# MSRV
- rust: nightly-2021-09-08
target: x86_64-unknown-linux-gnu
os: ubuntu-20.04

runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -121,6 +117,23 @@ jobs:
cargo fmt --check -p mbedtls
cargo fmt --check -p mbedtls-platform-support
cargo fmt --check -p mbedtls-sys-auto
msrv:
name: MSRV
runs-on: ubuntu-20.04
steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
persist-credentials: false

- uses: dtolnay/rust-toolchain@master
with:
toolchain: "nightly-2021-09-08"

- run: |
cargo check --locked --features ssl,rdrand,async-rt
cargo check --locked --no-default-features --features ssl,no_std_deps,rdrand,time
working-directory: mbedtls
ci-success:
name: ci
Expand Down

0 comments on commit 6073024

Please sign in to comment.