Skip to content

Update to Bogdanp/[email protected]

Update to Bogdanp/[email protected] #22

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
racket_version:
- '6.9'
- 'stable'
- 'current'
name: Test Racket ${{ matrix.racket_version }}
steps:
- name: Checkout
uses: actions/checkout@master
- name: Install Racket
uses: Bogdanp/[email protected]
with:
architecture: 'x64'
distribution: 'full'
version: ${{ matrix.racket_version }}
- name: Install Package
run: make install
- name: Check Deps
run: make check-deps
- name: Run Tests
run: make test