Skip to content

Commit

Permalink
Make clippy stable
Browse files Browse the repository at this point in the history
  • Loading branch information
Marta Mularczyk committed Mar 8, 2024
1 parent 658fd7e commit a4b4a3d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/no_std_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: dtolnay/rust-toolchain@nightly
with:
targets: thumbv6m-none-eabi
components: clippy
- name: Clippy
run: cargo +nightly clippy --no-default-features -p mls-rs -- -D warnings
run: cargo clippy --no-default-features -p mls-rs -- -D warnings
- name: Test
run: cargo +nightly test --no-default-features --features test_util --verbose -p mls-rs --lib --test '*'
run: cargo test --no-default-features --features test_util --verbose -p mls-rs --lib --test '*'
- name: Test Full RFC Compliance
run: cargo +nightly test --no-default-features --features rfc_compliant,test_util --verbose -p mls-rs
run: cargo test --no-default-features --features rfc_compliant,test_util --verbose -p mls-rs
- name: Build MLS Embedded
run: cargo +nightly build --package mls-rs --lib --no-default-features --target thumbv6m-none-eabi
- name: Build MLS Embedded Full RFC Compliance
Expand Down

0 comments on commit a4b4a3d

Please sign in to comment.