Create SNU_2D_ProgrammingTools_REPOLIST_V57.urll #1051
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
on: | |
- push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
racket-variant: ['BC', 'CS'] | |
racket-version: ['7.8', '7.9'] | |
name: Test on ${{ matrix.racket-variant }} Racket | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Install Racket | |
uses: Bogdanp/[email protected] | |
with: | |
architecture: 'x64' | |
distribution: 'full' | |
variant: ${{ matrix.racket-variant }} | |
version: ${{ matrix.racket-version }} | |
- name: Install Package and its Dependencies | |
run: raco pkg install --auto --batch | |
- name: Run Tests | |
run: raco test main.rkt |