Integration testing fixed #46
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: | |
| branches: | |
| - master | |
| - lab08 | |
| - develop # ← Added so GitHub Actions runs on your branch | |
| jobs: | |
| UnitTests: | |
| name: Unit Tests | |
| 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 | |
| IntegrationTests: | |
| name: Integration Tests | |
| 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: Integration Tests | |
| run: | | |
| docker build -t database ./db | |
| docker run --name employees -dp 33060:3306 database | |
| sleep 35 | |
| mvn -Dtest=com.napier.devops.AppIntegrationTest test | |
| docker stop employees | |
| docker rm employees | |
| docker image rm database | |
| build: | |
| name: Build and Start Using docker-compose | |
| 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: Package and Run docker compose | |
| run: | | |
| mvn package -DskipTests | |
| docker compose up --abort-on-container-exit | |