Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
making committed Dec 5, 2024
1 parent 51adc30 commit 39d5692
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI
on:
push:
branches:
- main
paths:
- src/**
- ui/**
- pom.xml
- .github/workflows/*
pull_request:
branches:
- main
paths:
- src/**
- ui/**
- pom.xml
- .github/workflows/*
jobs:
test:
uses: making/workflows/.github/workflows/maven-unit-test.yaml@main
build-jvm-image:
needs: test
uses: making/workflows/.github/workflows/build-docker-image-maven-jvm.yaml@main
with:
image_name: image_jvm
image_file: image.yaml
save-image-jvm:
needs: build-jvm-image
uses: making/workflows/.github/workflows/save-images.yaml@main
with:
image_name: image_jvm
image_file: image.yaml

0 comments on commit 39d5692

Please sign in to comment.