You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2023/12/23 14:35:25 UTC

(commons-math) branch master updated: Are the failures OS-related?

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-math.git


The following commit(s) were added to refs/heads/master by this push:
     new ced5f2669 Are the failures OS-related?
ced5f2669 is described below

commit ced5f266960f1d5e10a950b19f412cb73500ffbc
Author: Sebb <se...@apache.org>
AuthorDate: Sat Dec 23 14:35:20 2023 +0000

    Are the failures OS-related?
---
 .github/workflows/maven.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index d24aaf24f..c644b22f8 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -34,10 +34,11 @@ permissions:
 jobs:
   build:
 
-    runs-on: ubuntu-latest
+    runs-on: ${{ matrix.os }}
     strategy:
       fail-fast: false # Run all the versions, but show overall status as failed if one fails
       matrix:
+        os: [ ubuntu-latest, macos-latest, windows-latest ]
         java: [ 8, 11, 17 ]
 
     steps: