Skip to content

Commit f7f637f

Browse files
committed
fix(ci): update MSRV and Clippy no_std features to include libm
1 parent f7b5460 commit f7f637f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ jobs:
7373
runs-on: ubuntu-latest
7474
steps:
7575
- uses: actions/checkout@v4
76-
- uses: dtolnay/rust-toolchain@master
76+
- uses: dtolnay/rust-toolchain@stable
7777
with:
7878
toolchain: ${{ env.MSRV }}
79-
- run: cargo check --lib --no-default-features
79+
- run: cargo check --lib --no-default-features --features libm
8080

8181
clippy:
8282
name: Clippy
@@ -89,7 +89,7 @@ jobs:
8989
targets: thumbv7em-none-eabihf
9090
- uses: Swatinem/rust-cache@v2
9191
- run: cargo clippy ${{ env.CLIPPY_ARGS }} -- -W clippy::all
92-
- run: cargo clippy --lib --no-default-features --features rich-widgets --target thumbv7em-none-eabihf -- -W clippy::all
92+
- run: cargo clippy --lib --no-default-features --features rich-widgets,libm --target thumbv7em-none-eabihf -- -W clippy::all
9393

9494
test:
9595
name: Test Suite

0 commit comments

Comments
 (0)