Skip to content

feat: RustCrypto compatible implementation of ZUC-128 #17

feat: RustCrypto compatible implementation of ZUC-128

feat: RustCrypto compatible implementation of ZUC-128 #17

Workflow file for this run

name: CI
on:
push:
branches:
- main
- 'feat/**'
pull_request:
branches:
- main
- 'feat/**'
schedule:
- cron: '0 0 * * 0' # at midnight of each sunday
workflow_dispatch:
jobs:
develop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@just
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt, clippy, miri
- uses: Swatinem/rust-cache@v2
- run: just ci
msrv:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain:
- 1.74.0 # MSRV
- stable
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@just
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- uses: Swatinem/rust-cache@v2
- run: just test