Skip to content

Commit

Permalink
Add Mac OS to the build matrix
Browse files Browse the repository at this point in the history
Signed-off-by: Fred Bricon <[email protected]>
  • Loading branch information
fbricon committed Nov 15, 2023
1 parent 54f04b4 commit e76e5f6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
Expand All @@ -23,6 +23,6 @@ jobs:
- name: Run Tests on Windows
if: runner.os == 'Windows'
run: ./mvnw.cmd -B '-Dlemminx.cacheInRepoDir' clean verify
- name: Run Tests on Linux
if: runner.os == 'Linux'
- name: Run Tests on Mac/Linux
if: runner.os != 'Windows'
run: ./mvnw -B clean verify

0 comments on commit e76e5f6

Please sign in to comment.