-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ef4e531
commit 70cb155
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- release | ||
pull_request: | ||
schedule: | ||
- cron: "17 16 * * THU" | ||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
racket-variant: ["BC", "CS"] | ||
racket-version: ["8.9", "8.10", "pre-release", "stable", "current"] | ||
runs-on: ubuntu-latest | ||
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 cmd package | ||
run: raco pkg install --name raco-run-cmd --batch --auto ./raco-run-cmd | ||
- name: install base package | ||
run: raco pkg install --name raco-run --batch --auto ./raco-run | ||
- name: check declared dependencies | ||
run: raco setup --check-pkg-deps --unused-pkg-deps --pkgs raco-run raco-run-cmd | ||
- name: run tests | ||
run: raco test --drdr --package raco-run raco-run-cmd |