Trying to add CI. #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Check memory safety" | |
on: | |
pull_request: | |
push: | |
jobs: | |
check_safety: | |
name: check_safety | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v25 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- uses: DeterminateSystems/magic-nix-cache-action@v3 | |
- run: nix-shell --arg full false --run "echo Dependencies OK…" | |
- run: nix-shell --arg full false --run "jasminc -slice ml_dsa_65_keygen -checksafety ml_dsa_65/ref/ml_dsa.jazz" |