Skip to content

Commit

Permalink
Swap CI file with the one provided by author of setup-racket
Browse files Browse the repository at this point in the history
  • Loading branch information
EduardoLR10 committed Oct 12, 2023
1 parent 48245ee commit dfb39cc
Showing 1 changed file with 16 additions and 17 deletions.
33 changes: 16 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,26 @@
on: [push, pull_request]
name: CI
on:
- push
- pull_request

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'
include:
- racket-version: current
experimental: true
racket-variant: ['BC', 'CS']
racket-version: 'stable'
name: Build on ${{ matrix.racket-variant }} Racket
steps:
- uses: actions/checkout@v2
- uses: Bogdanp/setup-racket@v1.7
- name: Checkout
uses: actions/checkout@master
- name: Install Racket
uses: Bogdanp/setup-racket@v0.11
with:
architecture: x64
distribution: full
architecture: 'x64'
distribution: 'full'
variant: ${{ matrix.racket-variant }}
version: ${{ matrix.racket-version }}
- name: Installing dependencies
run: raco pkg install --auto
- name: Checking compilation
- name: Install Package and its Dependencies
run: raco pkg install --auto --batch
- name: Check compilation
run: raco exe --gui main.rkt

0 comments on commit dfb39cc

Please sign in to comment.