-
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.
Revert "Unify macos.yml and push.yml."
This reverts commit 36164a8.
- Loading branch information
Showing
2 changed files
with
36 additions
and
6 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,34 @@ | ||
on: | ||
- push | ||
|
||
jobs: | ||
build-and-test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [macos-latest] | ||
racket-variant: ['CS'] | ||
racket-version: ['8.6'] | ||
name: Test on Racket ${{ matrix.racket-variant }} ${{ matrix.racket-version }} on ${{ matrix.os }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@main | ||
- name: Install nasm | ||
run: brew install nasm | ||
- name: Install Racket | ||
uses: Bogdanp/[email protected] | ||
with: | ||
architecture: 'x64' | ||
distribution: 'full' | ||
variant: ${{ matrix.racket-variant }} | ||
version: ${{ matrix.racket-version }} | ||
- name: Version info | ||
run: | | ||
nasm --version | ||
gcc --version | ||
- name: Install langs package | ||
run: | | ||
raco pkg install --auto ../langs/ | ||
- name: Run tests | ||
run: | | ||
raco test -p langs |
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