Skip to content

Commit ec5383c

Browse files
chemicLtzolov
authored andcommitted
Add CI GitHub Action and rename snapshot publish workflow
1 parent ab0baf9 commit ec5383c

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

.github/workflows/ci.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on:
4+
pull_request: {}
5+
6+
jobs:
7+
build:
8+
name: Build branch
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout source code
12+
uses: actions/checkout@v4
13+
14+
- name: Set up JDK 17
15+
uses: actions/setup-java@v4
16+
with:
17+
java-version: '17'
18+
distribution: 'temurin'
19+
cache: 'maven'
20+
21+
- name: Build
22+
run: mvn verify

.github/workflows/continuous-integration.yml .github/workflows/publish-snapshot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI/CD build
1+
name: Publish Snapshot
22

33
on:
44
push:

0 commit comments

Comments
 (0)