Skip to content

Commit

Permalink
Try mac runner.
Browse files Browse the repository at this point in the history
  • Loading branch information
dvanhorn committed Nov 5, 2024
1 parent d60ee92 commit 98a0441
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/macos.yml
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: |
xvfb-run raco test -p langs

0 comments on commit 98a0441

Please sign in to comment.