cleanup #16
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: Unit testing | |
on: [push] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macos-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@master | |
with: | |
path: src | |
- name: "Install Racket" | |
uses: Bogdanp/setup-racket@v0.12 | |
- name: "Install generic-flonum as package" | |
run: raco pkg install --no-cache --auto --name generic-flonum src/ | |
- name: "Unit tests" | |
run: | | |
raco test . |