Skip to content

Update ci.yml

Update ci.yml #9

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
strategy:
matrix:
racket-version: ["stable", "current"]
racket-variant: ["CS"]
steps:
- uses: actions/checkout@v5
- uses: Bogdanp/setup-racket@v1.14
with:
architecture: 'x64'
distribution: 'full'
variant: ${{ matrix.racket-variant }}
version: ${{ matrix.racket-version }}
- name: Installing debug and its dependencies
run: raco pkg install --no-docs --auto --link --name debug
- name: Compiling debug and building its docs
run: raco setup --check-pkg-deps --unused-pkg-deps debug typed
- name: Testing debug
run: raco test -p debug