diff --git a/.github/workflows/bake-kdf.yml b/.github/workflows/bake-kdf.yml new file mode 100644 index 0000000..0a05bb5 --- /dev/null +++ b/.github/workflows/bake-kdf.yml @@ -0,0 +1,53 @@ +name: bake-kdf + +on: + pull_request: + paths: + - "bake-kdf/**" + - "Cargo.*" + push: + branches: master + +defaults: + run: + working-directory: bake-kdf + +env: + CARGO_INCREMENTAL: 0 + RUSTFLAGS: "-Dwarnings" + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + rust: + - 1.56.0 # MSRV + - stable + target: + - thumbv7em-none-eabi + - wasm32-unknown-unknown + steps: + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@master + with: + toolchain: ${{ matrix.rust }} + targets: ${{ matrix.target }} + - run: cargo build --no-default-features --target ${{ matrix.target }} + + test: + runs-on: ubuntu-latest + strategy: + matrix: + rust: + - 1.56.0 # MSRV + - stable + steps: + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@master + with: + toolchain: ${{ matrix.rust }} + - run: cargo check --all-features + - run: cargo test --no-default-features + - run: cargo test + - run: cargo test --all-features