Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 0 additions & 23 deletions .github/workflows/build-test.yml

This file was deleted.

38 changes: 38 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Build
on:
push:
branches:
- v2
pull_request:
branches:
- v2
workflow_dispatch:

jobs:
build:
name: Build with Java 17
runs-on: ubuntu-latest
timeout-minutes: 15

steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: "adopt"
java-version: "17"
cache: "maven"

- name: Java version
run: java -version

- name: Check maven version
run: mvn --version

- name: Build
run: mvn -B package

- name: Upload a Build Artifact
uses: actions/[email protected]
with:
path: target/
Loading