Add print statement for debugging. #3
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 | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
racket-variant: ['BC', 'CS'] | ||
racket-version: ['8.17', '8.16'] | ||
name: Test on ${{ matrix.racket-variant }} Racket | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
- name: Install Racket | ||
uses: Bogdanp/[email protected] | ||
with: | ||
architecture: 'x64' | ||
distribution: 'full' | ||
variant: ${{ matrix.racket-variant }} | ||
version: ${{ matrix.racket-version }} | ||
- name: Install Package and its Dependencies | ||
run: raco pkg show --all | ||
run: raco pkg install --auto --batch | ||
Check failure on line 24 in .github/workflows/push.yml
|
||
run: raco pkg show --all | ||
- name: Run Tests | ||
run: raco test -t . |