Clean up scribble warnings #29
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: Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, synchronize] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
racket-variant: ['BC', 'CS'] | |
racket-version: ['8.1', '8.2', '8.3', '8.4', '8.5', '8.6', '8.7', '8.8', '8.9', '8.10', '8.11', '8.12', '8.13'] | |
name: Test on Racket ${{ matrix.racket-version }} ${{ matrix.racket-variant }} | |
steps: | |
- name: Checkout splitflap repo | |
uses: actions/checkout@master | |
- name: Install Racket ${{ matrix.racket-version }} ${{ matrix.racket-variant }} | |
uses: Bogdanp/[email protected] | |
with: | |
architecture: 'x64' | |
distribution: 'full' | |
variant: ${{ matrix.racket-variant }} | |
version: ${{ matrix.racket-version }} | |
- name: Install splitflap lib and dependencies | |
run: raco pkg install --auto --batch --link splitflap-lib/ | |
- name: Run tests | |
run: raco test splitflap-tests | |
- name: Build docs | |
run: raco pkg install --auto --batch --link splitflap-doc/ |