Update README getting started instructions #218
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
# DO NOT EDIT! Generated by eval-github-yaml from .github/workflows/ci.ncl | |
{ | |
"concurrency": { | |
"cancel-in-progress": true, | |
"group": "ci-${{ github.ref }}" | |
}, | |
"jobs": { | |
"build-and-test-macos-latest": { | |
"name": "Build and Test / (macos-latest)", | |
"runs-on": "macos-latest", | |
"steps": [ | |
{ | |
"uses": "actions/checkout@v4" | |
}, | |
{ | |
"name": "Installing Nix", | |
"uses": "cachix/install-nix-action@v23", | |
"with": { | |
"extra_nix_config": "experimental-features = nix-command flakes", | |
"nix_path": "nixpkgs=channel:nixos-unstable" | |
} | |
}, | |
{ | |
"name": "Setup Cachix", | |
"uses": "cachix/cachix-action@v12", | |
"with": { | |
"authToken": "${{ secrets.CACHIX_TWEAG_NICKEL_AUTH_TOKEN }}", | |
"name": "tweag-nickel" | |
} | |
}, | |
{ | |
"name": "Run flake check", | |
"run": "nix flake check --print-build-logs\nnix run .#test-examples" | |
} | |
] | |
}, | |
"build-and-test-ubuntu-latest": { | |
"name": "Build and Test / (ubuntu-latest)", | |
"runs-on": "ubuntu-latest", | |
"steps": [ | |
{ | |
"uses": "actions/checkout@v4" | |
}, | |
{ | |
"name": "Installing Nix", | |
"uses": "cachix/install-nix-action@v23", | |
"with": { | |
"extra_nix_config": "experimental-features = nix-command flakes", | |
"nix_path": "nixpkgs=channel:nixos-unstable" | |
} | |
}, | |
{ | |
"name": "Setup Cachix", | |
"uses": "cachix/cachix-action@v12", | |
"with": { | |
"authToken": "${{ secrets.CACHIX_TWEAG_NICKEL_AUTH_TOKEN }}", | |
"name": "tweag-nickel" | |
} | |
}, | |
{ | |
"name": "Run flake check", | |
"run": "nix flake check --print-build-logs\nnix run .#test-examples" | |
} | |
] | |
} | |
}, | |
"name": "CI", | |
"on": { | |
"pull_request": { | |
"branches": [ | |
"main" | |
] | |
}, | |
"push": { | |
"branches": [ | |
"main" | |
] | |
} | |
} | |
} |