Skip to content

Simplify CI system

Simplify CI system #24

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
build:
name: "Build on Racket '${{ matrix.racket-version }}' (${{ matrix.racket-variant }})"
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental || false }}
strategy:
fail-fast: false
matrix:
racket-version: ["stable", "current"]
racket-variant: 'CS'

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

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 12, Col: 25): Unexpected value 'CS'
include:
- racket-version: current
experimental: true
steps:
- uses: actions/checkout@v2
- uses: Bogdanp/setup-racket@v1.10
with:
architecture: x64
distribution: full
variant: ${{ matrix.racket-variant }}
version: ${{ matrix.racket-version }}
- name: Installing dependencies
run: raco pkg install
- name: Checking compilation
run: raco exe --gui main.rkt