Skip to content

Commit 8fbf455

Browse files
GitHub Actions
1 parent aa71d76 commit 8fbf455

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/gradle.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Build and tests
2+
on: push
3+
jobs:
4+
java-8:
5+
uses: oleg-cherednik/github-workflows/.github/workflows/gradle-java-build-test.yml@main
6+
with:
7+
java-version: '8'
8+
codacy-report: true
9+
secrets: inherit
10+
permissions:
11+
contents: read
12+
packages: write
13+
java-11:
14+
uses: oleg-cherednik/github-workflows/.github/workflows/gradle-java-build-test.yml@main
15+
with:
16+
java-version: '11'
17+
secrets: inherit
18+
permissions:
19+
contents: read
20+
packages: write
21+
java-17:
22+
uses: oleg-cherednik/github-workflows/.github/workflows/gradle-java-build-test.yml@main
23+
with:
24+
java-version: '17'
25+
secrets: inherit
26+
permissions:
27+
contents: read
28+
packages: write

0 commit comments

Comments
 (0)