Move crypto3 derivation into a separate file, and clean it up #2
Workflow file for this run
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: Crypto3 Build and Test on macOS Platforms | |
jobs: | |
build-and-test: | |
name: "Build and test macOS" | |
runs-on: [macos-14] | |
steps: | |
- name: Checkout Crypto3 | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# From https://github.com/DeterminateSystems/magic-nix-cache-action | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- uses: DeterminateSystems/flake-checker-action@main | |
- name: Run checks | |
run: nix flake -L check | |
env: | |
NIX_CONFIG: | | |
cores = 0 | |
max-jobs = 1 |