This is an automated email from the ASF dual-hosted git repository. fanningpj pushed a commit to branch pjfanning-patch-2 in repository https://gitbox.apache.org/repos/asf/pekko-management.git
commit 07a8f70f7bff0f1c36f5e15dca34d3b24fa6946b Author: PJ Fanning <[email protected]> AuthorDate: Tue Jun 18 10:43:03 2024 +0100 add Java 17 and 21 to nightly.yml --- .github/workflows/nightly.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index e4d28ef4..410cd004 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -2,6 +2,7 @@ name: Nightly Tests on: workflow_dispatch: + pull_request: schedule: - cron: '0 2 * * *' # every day 2am @@ -12,13 +13,9 @@ jobs: strategy: fail-fast: false matrix: - include: - - { javaVersion: 8, scalaVersion: 2.12, pekkoVersion: 'default' } - - { javaVersion: 8, scalaVersion: 2.12, pekkoVersion: '1.0.x' } - - { javaVersion: 8, scalaVersion: 2.13, pekkoVersion: 'default' } - - { javaVersion: 8, scalaVersion: 2.13, pekkoVersion: '1.0.x' } - - { javaVersion: 8, scalaVersion: 3.3, pekkoVersion: 'default' } - - { javaVersion: 8, scalaVersion: 3.3, pekkoVersion: '1.0.x' } + scalaVersion: ['2.12', '2.13', '3.3'] + javaVersion: [8, 11, 17, 21] + pekkoVersion: ['default', '1.0.x'] steps: - name: Checkout uses: actions/checkout@v4 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
