Enable use-function-output-syntax
for ISL[+]. Fixes #208.
#374
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: Build and Test | |
on: [push, pull_request] | |
jobs: | |
build-test: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
racket-variant: ["BC", "CS"] | |
steps: | |
- uses: actions/[email protected] | |
- uses: Bogdanp/[email protected] | |
with: | |
architecture: 'x64' | |
distribution: 'full' | |
variant: ${{ matrix.racket-variant }} | |
version: current | |
sudo: never | |
dest: '${HOME}/racket' | |
local_catalogs: $GITHUB_WORKSPACE | |
- run: raco pkg update -i --no-setup htdp-lib htdp-doc htdp | |
- name: Install htdp-test (depends on htdp-lib) | |
run: raco pkg install --auto -i --skip-installed --no-setup htdp-test | |
- run: raco setup --check-pkg-deps --pkgs htdp-lib htdp-doc htdp-test | |
- name: Run tests | |
run: xvfb-run raco test htdp-test |