Browse Source

Adding MacOS to the Github CI tests.

David Piuva 10 months ago
parent
commit
1ace9a849c
2 changed files with 4 additions and 2 deletions
  1. 2 1
      .github/workflows/ci.yml
  2. 2 1
      .github/workflows/ci.yml.tabs

+ 2 - 1
.github/workflows/ci.yml

@@ -4,9 +4,10 @@ name: DFPSR tests
 on: [push]
 jobs:
   test:
-    runs-on: ubuntu-latest
+    runs-on: ${{ matrix.os }}
     strategy:
       matrix:
+        os: [ubuntu-latest, macos-latest]
         architecture: [x86_32, x86_64]
     steps:
       - name: Checkout

+ 2 - 1
.github/workflows/ci.yml.tabs

@@ -3,9 +3,10 @@ name: DFPSR tests
 on: [push]
 jobs:
 	test:
-		runs-on: ubuntu-latest
+		runs-on: ${{ matrix.os }}
 		strategy:
 			matrix:
+				os: [ubuntu-latest, macos-latest]
 				architecture: [x86_32, x86_64]
 		steps:
 			- name: Checkout