This is an automated email from the ASF dual-hosted git repository. sjaranowski pushed a commit to branch build-only-first-job in repository https://gitbox.apache.org/repos/asf/maven-shared-resources.git
commit f634c6b33ccf0b6c883a9ee1759d986dfb59d722 Author: Slawomir Jaranowski <[email protected]> AuthorDate: Sun Jun 2 10:05:59 2024 +0200 Use only linux with build matrix --- .github/workflows/maven-verify.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index 932827c..4b78fcf 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -25,3 +25,10 @@ jobs: build: name: Verify uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v4 + with: + # linux build is enough here :-) + matrix-exclude: > + [ + {"os": "windows-latest"}, + {"os": "macos-latest"} + ] \ No newline at end of file
