Added JUnit Testing & Updated Github Actions Workflow. #42
This file contains hidden or 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: A workflow for my Hello World App | |
| on: push | |
| jobs: | |
| build: | |
| name: Hello world action | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| distribution: 'adopt' | |
| - name: Unit Tests | |
| run: mvn -Dtest=com.napier.devops.AppTest test | |
| - name: Package and Run docker compose | |
| run: | | |
| mvn package -DskipTests | |
| docker compose up --abort-on-container-exit |