Merge branch 'master' of https://github.com/eieihtwesan/seMethod #36
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: A workflow for my Hello World App | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
jobs: | |
UnitTests: | |
name: Unit Tests | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Unit Tests | |
run: mvn -Dtest=com.napier.sem.AppTest test | |
IntegrationTests: | |
name: Integration Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Integration Tests and CodeCov | |
run: | | |
docker build -t database ./db | |
docker run --name employees -dp 33060:3306 database | |
mvn -Dtest=com.napier.sem.AppIntegrationTest test jacoco:report | |
docker stop employees | |
docker rm employees | |
docker image rm database | |
- name: Upload results to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
build: | |
name: Build and Start Using docker compose | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Package and Run docker compose | |
run: | | |
mvn package -DskipTests | |
docker compose up --abort-on-container-exit |