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

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


The following commit(s) were added to refs/heads/master by this push:
     new 08e842c8 Run CI on Linux and macOS
08e842c8 is described below

commit 08e842c8b6c5860b47a6c4efdce8e1e79d430035
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Jun 6 09:28:44 2025 -0400

    Run CI on Linux and macOS
---
 .github/workflows/maven.yml | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 4b4bf2e0..630852b5 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -23,15 +23,19 @@ permissions:
 jobs:
   build:
 
-    runs-on: ubuntu-latest
+    runs-on: ${{ matrix.os }}
     continue-on-error: ${{ matrix.experimental }}
     strategy:
+      fail-fast: false
       matrix:
+        os: [ubuntu-latest, macos-13]
         java: [ 8, 11, 17, 21, 24 ]
         experimental: [false]
+        # Keep the same parameter order as the matrix above
         include:
-            - java: 25-ea
-              experimental: true
+          - os: ubuntu-latest
+            java: 25-ea
+            experimental: true
       
     steps:
     - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2

Reply via email to