Skip to content

Rework the decryption interface to be closer to Sans-IO #60

Rework the decryption interface to be closer to Sans-IO

Rework the decryption interface to be closer to Sans-IO #60

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
schedule:
- cron: "34 6 * * 5"
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [stable]
include:
- os: ubuntu-latest
rust: beta
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- run: cargo check --all-features --all-targets
env:
CARGO_INCREMENTAL: 0 # https://github.com/rust-lang/rust/issues/101518
- run: cargo test --all-features
env:
CARGO_INCREMENTAL: 0 # https://github.com/rust-lang/rust/issues/101518
msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.83.0
- run: cargo check --all-features --bins
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: rustfmt, clippy
- run: cargo fmt --all -- --check
- run: cargo clippy --all-targets --all-features -- -D warnings
env:
CARGO_INCREMENTAL: 0 # https://github.com/rust-lang/rust/issues/101518
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: EmbarkStudios/cargo-deny-action@v2