Skip to content

Commit 325e7ab

Browse files
committed
Merge branch 'master' into develop
2 parents 6d1246f + 6a8316c commit 325e7ab

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

.github/workflows/code_quality.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Qodana
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
8+
- develop
9+
10+
jobs:
11+
qodana:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
with:
16+
fetch-depth: 0
17+
- name: 'Qodana Scan'
18+
uses: JetBrains/[email protected]

.github/workflows/maven.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Java CI with Maven
2+
'on':
3+
push:
4+
branches:
5+
- master
6+
- develop
7+
pull_request:
8+
types:
9+
- opened
10+
- reopened
11+
- synchronize
12+
- ready_for_review
13+
- unlocked
14+
branches:
15+
- master
16+
- develop
17+
18+
jobs:
19+
build:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v3
23+
- name: Set up Java 16
24+
uses: actions/setup-java@v3
25+
with:
26+
java-version: '16'
27+
distribution: adopt
28+
- name: Build with Maven
29+
run: mvn --batch-mode --update-snapshots verify
30+
- name: Create necessary directories
31+
run: mkdir staging && cp target/*.jar staging
32+
- name: Upload artifact
33+
uses: actions/upload-artifact@v3
34+
with:
35+
name: '${{ github.event.repository.name }}-${{ github.sha }}'
36+
path: staging

0 commit comments

Comments
 (0)