Skip to content

Commit

Permalink
Unify macos.yml and push.yml.
Browse files Browse the repository at this point in the history
  • Loading branch information
dvanhorn committed Nov 5, 2024
1 parent 946ad81 commit 36164a8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 36 deletions.
34 changes: 0 additions & 34 deletions .github/workflows/macos.yml

This file was deleted.

8 changes: 6 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
os: [ubuntu-20.04, ubuntu-22.04, macos-latest]
racket-variant: ['BC', 'CS']
racket-version: ['8.6', '8.8', '8.14']
name: Test on Racket ${{ matrix.racket-variant }} ${{ matrix.racket-version }} on ${{ matrix.os }}
Expand All @@ -31,4 +31,8 @@ jobs:
raco pkg install --auto ../langs/
- name: Run tests
run: |
xvfb-run raco test -p langs
if [ "${{ matrix.os }}" == "macos-latest" ]; then
raco test -p langs
else
xvfb-run raco test -p langs
fi

0 comments on commit 36164a8

Please sign in to comment.