-
Notifications
You must be signed in to change notification settings - Fork 2
32 lines (31 loc) · 832 Bytes
/
test.yml
File metadata and controls
32 lines (31 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Code Quality Checks
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
- 'releases/*'
jobs:
run-spotless:
uses: martinwitt/unreusable-workflows/.github/workflows/spotless-gradle.yaml@master
with:
java-version: '21'
distribution: 'oracle'
working-dir: './'
qodana-scan:
permissions:
security-events: write
uses: martinwitt/unreusable-workflows/.github/workflows/qodana-scan.yaml@master
junit:
uses: martinwitt/unreusable-workflows/.github/workflows/gradle-tests.yaml@master
with:
java-version: '21'
distribution: 'oracle'
working-dir: './'
build:
uses: martinwitt/unreusable-workflows/.github/workflows/gradle-build.yaml@master
with:
java-version: '21'
distribution: 'oracle'
working-dir: './'