Skip to content

Commit

Permalink
finalise github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
James Powell committed Jan 24, 2025
1 parent 731fe1a commit 9d140ef
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,20 @@ jobs:
runs-on: ubuntu-latest

steps:
# Checkout the repository
- name: Checkout Code
uses: actions/checkout@v3

# Set up Java environment
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'zulu'

# Maven clean install
- name: Maven Clean Install
run: mvn clean install

# Docker build
- name: Docker Build
run: docker build -f Dockerfile-component -t ct/eventsourcing:latest .

# Maven test with the component profile
- name: Maven Test with Component Profile
- name: Lydtech Component Tests
run: mvn test -Pcomponent

0 comments on commit 9d140ef

Please sign in to comment.