Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test macOS on pull requests and master #3729

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
name: Test [thorough]
name: Gradle Tests

on:
pull_request:
workflow_dispatch:
push:
branches:
- master

concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
# Cancel if there is a new update only on pull requests
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
test-matrix:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
javaVersion: [ 8, 11, 17, 21 ]
fail-fast: false
# Enable fail-fast on pull requests, to avoid clogging up CI
fail-fast: ${{ github.event_name == 'pull_request' }}
runs-on: ${{ matrix.os }}
steps:
- name: Set longpaths support for Windows
Expand Down
36 changes: 0 additions & 36 deletions .github/workflows/tests-smoke.yml

This file was deleted.

Loading