Skip to content

remove workaround with glistix 0.5.0 release #16

remove workaround with glistix 0.5.0 release

remove workaround with glistix 0.5.0 release #16

Workflow file for this run

name: test
on:
push:
branches:
- master
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: "recursive"
# - uses: erlef/setup-beam@v1
# with:
# otp-version: "26.0.2"
# # Ensure you update the bin/download-compiler Gleam version to match this
# gleam-version: "1.6.1"
# rebar3-version: "3"
- uses: cachix/install-nix-action@v26
- uses: DeterminateSystems/magic-nix-cache-action@v4
- run: ./bin/download-compiler
- run: glistix deps download
shell: nix develop -L --command bash -e {0}
- run: glistix format --check src test
shell: nix develop --command bash -e {0}
# This will work even if compilation fails (as Lustre imports arent't valid on Nix)
# The main concern is generating files for deps and prelude
- name: Generate Nix files
run: glistix build --target nix | true
shell: nix develop --command bash -e {0}
- run: glistix test
shell: nix develop --command bash -e {0}
- run: glistix run
shell: nix develop --command bash -e {0}