Skip to content

Add print statement for debugging. #3

Add print statement for debugging.

Add print statement for debugging. #3

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / .github/workflows/push.yml

Invalid workflow file

The workflow is not valid. .github/workflows/push.yml (Line: 24, Col: 9): 'run' is already defined .github/workflows/push.yml (Line: 25, Col: 9): 'run' is already defined
run: raco pkg show --all
- name: Run Tests
run: raco test -t .