Skip to content

Improve ci.yml

Improve ci.yml #30

Workflow file for this run

on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
racket-variant: ['BC', 'CS']
racket-version: 'stable'

Check failure on line 9 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 9, Col: 25): Unexpected value 'stable'
name: Build on ${{ matrix.racket-variant }} Racket
steps:
- name: Checkout
uses: actions/checkout@master
- name: Install Racket
uses: Bogdanp/setup-racket@v0.11
with:
architecture: 'x64'
distribution: 'full'
variant: ${{ matrix.racket-variant }}
version: ${{ matrix.racket-version }}
- name: Install Package and its Dependencies
run: raco pkg install --auto --batch
- name: Check compilation
run: raco exe --gui main.rkt