remove accidental commit #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Project Pipeline | |
on: | |
push: | |
branches: | |
- "**" # Trigger on all branches | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'zulu' | |
- name: Maven Clean Install | |
run: mvn clean install | |
- name: Docker Build | |
run: docker build -f Dockerfile-component -t ct/eventsourcing:latest . | |
- name: Lydtech Component Tests | |
run: mvn test -Pcomponent |