Skip to content

Commit

Permalink
[Fix] Update GH actions config to make them runnable.
Browse files Browse the repository at this point in the history
  • Loading branch information
ledsoft committed Dec 17, 2024
1 parent a9a0f2b commit f9545ff
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build

on:
push:
branches: [ master ]
branches: [ master, development ]
pull_request:
branches: [ master ]
branches: [ master, development ]

jobs:
build:
Expand All @@ -13,9 +13,10 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up JDK
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
java-version: '17'
- name: Build with Maven
run: mvn -B package --file pom.xml

0 comments on commit f9545ff

Please sign in to comment.