fix docs #113
This file contains hidden or 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
| on: [push, pull_request] | |
| name: CI | |
| jobs: | |
| build: | |
| name: "Build on Racket" | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: Bogdanp/setup-racket@v1.9.1 | |
| with: | |
| architecture: x64 | |
| distribution: full | |
| variant: "CS" | |
| version: "current" | |
| sudo: never | |
| dest: '"${HOME}/racket-current-CS"' | |
| local_catalogs: '${GITHUB_WORKSPACE}' | |
| - run: mkdir ~/.racket/ | |
| - run: chmod -R a+w ~/.racket/ | |
| - name: Install the Local Checkout of Redex | |
| run: | | |
| raco pkg install --auto -i --no-setup --skip-installed redex-test | |
| raco pkg update -i --auto --no-setup redex/ redex-doc/ redex-gui-lib/ redex-pict-lib/ redex-benchmark/ redex-examples/ redex-lib/ redex-test/ | |
| - name: Compile the Local Checkout of Redex | |
| run: raco setup --pkgs redex | |
| - run: xvfb-run -a racket -l redex/tests/run-tests -- --no-bitmap-tests --examples --set-exit-status-on-stderr |