-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (31 loc) · 1 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Test
on: [push, pull_request]
jobs:
build:
name: "Test 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
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 --name telebot
- name: Testing telebot
run: raco test -x -p telebot
- name: Installing eval-bot
run: raco pkg install --no-docs --auto --name eval-bot
- name: Testing eval-bot
run: raco test -x -p eval-bot