Skip to content

Commit

Permalink
Add separate GitHub workflow config for unit-testing java11 branch
Browse files Browse the repository at this point in the history
- So as to use Java11 in the branch, while keep using Java8 in other branches

[#184142402]
  • Loading branch information
hsinn0 committed Oct 4, 2023
1 parent b39fa94 commit 3b8705d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/unit-test-java11.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: unit-test-java11

on:
push:
branches:
- '**java11'

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: 'liberica'
java-version: '11'
- name: Build and test with Gradle
run: ./gradlew clean build
5 changes: 4 additions & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: unit-test

on: [push]
on:
push:
branches-ignore:
- '**java11'

permissions:
contents: read
Expand Down

0 comments on commit 3b8705d

Please sign in to comment.