-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Swap CI file with the one provided by author of setup-racket
- Loading branch information
1 parent
48245ee
commit dfb39cc
Showing
1 changed file
with
16 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |