Switch to Creator Connection License 1.0 #6
This file contains hidden or 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
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"] | |
steps: | |
- uses: actions/[email protected] | |
- uses: Bogdanp/[email protected] | |
with: | |
architecture: 'x64' | |
distribution: 'full' | |
variant: 'CS' | |
version: ${{ matrix.racket-version }} | |
- name: Installing punct-tests and its dependencies | |
run: raco pkg install --no-docs --auto punct-lib/ punct-tests/ | |
- name: Testing punct-tests | |
run: raco test -x -p punct-tests |