Skip to content

Commit 7e820a4

Browse files
committed
Copyright added
1 parent 7ac77d5 commit 7e820a4

1 file changed

Lines changed: 19 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,28 @@ on:
1212
- cron: '0 0 * * *'
1313

1414
jobs:
15+
check-copyright:
16+
runs-on: ubuntu-latest
17+
name: Check Copyright
18+
steps:
19+
- uses: actions/checkout@v4
20+
with:
21+
fetch-depth: 0
22+
- id: copyright-action
23+
uses: cicsdev/.github/.github/actions/samples-copyright-checker@4134522d8109169bb8c460db841f94167ec2802f
24+
with:
25+
directory: './cics-java-liberty-restapp/'
26+
file-extensions: '*.java'
27+
base-copyright: 'Copyright IBM Corp. 2025'
28+
token: ${{ secrets.GITHUB_TOKEN }}
29+
1530
build-maven:
1631
name: Build Maven
1732

1833
runs-on: ubuntu-latest
1934
strategy:
2035
matrix:
21-
jdk: [17, 21, 25]
36+
jdk: [8, 11, 17, 21, 25]
2237
steps:
2338
- uses: actions/checkout@v4
2439
- name: Set up JDK ${{ matrix.jdk }}
@@ -36,7 +51,7 @@ jobs:
3651
runs-on: ubuntu-latest
3752
strategy:
3853
matrix:
39-
jdk: [17, 21, 25]
54+
jdk: [8, 11, 17, 21, 25]
4055
steps:
4156
- uses: actions/checkout@v4
4257
- name: Set up JDK ${{ matrix.jdk }}
@@ -54,7 +69,7 @@ jobs:
5469
runs-on: ubuntu-latest
5570
strategy:
5671
matrix:
57-
jdk: [17, 21, 25]
72+
jdk: [8, 11, 17, 21, 25]
5873
steps:
5974
- uses: actions/checkout@v4
6075
- name: Set up JDK ${{ matrix.jdk }}
@@ -73,7 +88,7 @@ jobs:
7388
runs-on: ubuntu-latest
7489
strategy:
7590
matrix:
76-
jdk: [17, 21, 25]
91+
jdk: [8, 11, 17, 21, 25]
7792
steps:
7893
- uses: actions/checkout@v4
7994
- name: Set up JDK ${{ matrix.jdk }}

0 commit comments

Comments
 (0)