Skip to content

Commit eeed171

Browse files
committed
Tidy GitHub Actions Maven workflow
Normalize spacing in branch lists and the java matrix in .github/workflows/maven-build.yml, and fix the setup step label/variable from 'Setup JDK ${{ matrix.Java }}' to 'Setup Java ${{ matrix.java }}'. Purely cosmetic/consistency changes; no functional behavior altered.
1 parent de5eb79 commit eeed171

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/maven-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ permissions:
1313

1414
on:
1515
push:
16-
branches: [ 'main', 'dev' ]
16+
branches: [ 'main' , 'dev' ]
1717
pull_request:
18-
branches: [ 'main', 'dev' , 'release' ]
18+
branches: [ 'main' , 'dev' , 'release' ]
1919

2020
jobs:
2121
build:
2222
runs-on: ubuntu-latest
2323
strategy:
2424
matrix:
25-
java: [ '8', '11' , '17' , '21' , '25' ]
25+
java: [ '8', '11', '17', '21', '25' ]
2626
steps:
2727
- name: Checkout Source
2828
uses: actions/checkout@v5
2929

30-
- name: Setup JDK ${{ matrix.Java }}
30+
- name: Setup Java ${{ matrix.java }}
3131
uses: actions/setup-java@v5
3232
with:
3333
distribution: 'temurin'

0 commit comments

Comments
 (0)