Skip to content

Migrate to new roc

Migrate to new roc #29

Workflow file for this run

on:
pull_request:
workflow_dispatch:
# this cancels workflows currently in progress if you start a new one
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# Do not add permissions here! Configure them at the job level!
permissions: {}
jobs:
test-examples-nix:
runs-on: [ubuntu-24.04]
steps:
- uses: actions/checkout@v4
# install nix
- uses: cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f # commit for v31
with:
nix_path: nixpkgs=channel:nixos-unstable
# Run all tests
- name: Run all tests
run: nix develop -c sh -c 'export ROC=roc && ./ci/all_tests.sh'