schema: tiny fix for ref
#35
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
name: Test | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: "Test on Racket '${{ matrix.racket-version }}' (${{ matrix.racket-variant }})" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
racket-version: ["8.11"] | |
racket-variant: ["CS"] | |
steps: | |
- uses: actions/[email protected] | |
- uses: Bogdanp/[email protected] | |
with: | |
architecture: x64 | |
distribution: full | |
variant: ${{ matrix.racket-variant }} | |
version: ${{ matrix.racket-version }} | |
- name: Installing telebot | |
run: raco pkg install --no-docs --auto --link telebot | |
- name: Testing telebot | |
run: raco test -x -p telebot | |
- name: Installing eval-bot | |
run: raco pkg install --no-docs --auto --link eval-bot | |
- name: Testing eval-bot | |
run: raco test -x -p eval-bot |