Add --batch back to CI configuration #6
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: | | |
echo "Before installation:" | |
raco pkg show --all | |
raco pkg install --auto --batch -j $(nproc) | |
echo "After installation:" | |
raco pkg show --all | |
- name: Run Tests | |
run: raco test -j $(nproc) -t . |