Skip to content
Open
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
10 changes: 10 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ jobs:
architecture: x64
cache: maven

- name: Restore Maven cache
uses: skjolber/maven-cache-github-action@v3.1.1
with:
step: restore

- name: Maven Validate
run: mvn -B --settings .mvn/custom-settings.xml validate
- name: Maven Compile
Expand Down Expand Up @@ -57,6 +62,11 @@ jobs:
name: jar-file
path: target/mediatoad-1-SNAPSHOT-jar-with-dependencies.jar

- name: Save Maven cache
uses: skjolber/maven-cache-github-action@v3.1.1
with:
step: save


build-image:
runs-on: ubuntu-latest
Expand Down
Loading