Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions .github/workflows/crypto-bigint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ on:
paths-ignore:
- README.md
push:
branches: master
branches:
- master
paths-ignore:
- README.md

Expand All @@ -20,7 +21,7 @@ jobs:
strategy:
matrix:
rust:
- 1.81.0 # MSRV
- 1.83.0 # MSRV
- stable
target:
- thumbv7em-none-eabi
Expand Down Expand Up @@ -48,15 +49,15 @@ jobs:
include:
# 32-bit Linux
- target: i686-unknown-linux-gnu
rust: 1.81.0 # MSRV
rust: 1.83.0 # MSRV
deps: sudo apt update && sudo apt install gcc-multilib
- target: i686-unknown-linux-gnu
rust: stable
deps: sudo apt update && sudo apt install gcc-multilib

# 64-bit Linux
- target: x86_64-unknown-linux-gnu
rust: 1.81.0 # MSRV
rust: 1.83.0 # MSRV
- target: x86_64-unknown-linux-gnu
rust: stable
steps:
Expand Down Expand Up @@ -105,6 +106,9 @@ jobs:
with:
toolchain: nightly
- run: cargo update -Z minimal-versions
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- run: cargo +stable build --release --all-features

miri:
Expand Down Expand Up @@ -136,7 +140,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.81.0
toolchain: stable
components: clippy
- run: cargo clippy --all --all-features -- -D warnings

Expand All @@ -156,7 +160,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.81.0
toolchain: stable
- run: cargo build --benches
- run: cargo build --all-features --benches

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/dudect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ name: dudect

on:
push:
branches: master
branches:
- master
paths-ignore:
- README.md

Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/security-audit.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
name: Security Audit
on:
pull_request:
paths: Cargo.lock
paths:
- Cargo.lock
- .github/workflows/security-audit.yml
push:
branches: master
paths: Cargo.lock
paths:
- Cargo.lock
schedule:
- cron: "0 0 * * *"

Expand All @@ -18,7 +21,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.cargo/bin
key: ${{ runner.os }}-cargo-audit-v0.13.0
- uses: actions-rs/audit-check@v1
key: ${{ runner.os }}-cargo-audit-v0.21.0
- uses: rustsec/audit-check@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
Loading