WIP
All checks were successful
CI / clippy (push) Successful in 30s
CI / no-std (push) Successful in 30s
CI / build (push) Successful in 30s
CI / test (push) Successful in 46s

This commit is contained in:
2026-02-21 08:53:23 +00:00
parent 384f7c12b8
commit fb5cd9e31d

View File

@@ -10,29 +10,29 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: rustup update stable && rustup default stable - run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable
- run: cargo build - run: . $HOME/.cargo/env && cargo build
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: rustup update stable && rustup default stable - run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable
- run: cargo test - run: . $HOME/.cargo/env && cargo test
- run: cargo test --features webpki - run: . $HOME/.cargo/env && cargo test --features webpki
- run: cargo test --features native-pki - run: . $HOME/.cargo/env && cargo test --features native-pki
- run: cargo test --features native-pki,rsa - run: . $HOME/.cargo/env && cargo test --features native-pki,rsa
clippy: clippy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: rustup update stable && rustup default stable && rustup component add clippy - run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --component clippy
- run: cargo clippy -- -D warnings - run: . $HOME/.cargo/env && cargo clippy -- -D warnings
no-std: no-std:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: rustup update stable && rustup default stable && rustup target add thumbv7em-none-eabi - run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --target thumbv7em-none-eabi
- run: cargo build --target thumbv7em-none-eabi --no-default-features - run: . $HOME/.cargo/env && cargo build --target thumbv7em-none-eabi --no-default-features