Skip to content

Commit

Permalink
Merge pull request #13 from software-students-spring2024/johan-tests
Browse files Browse the repository at this point in the history
added workflow tests
  • Loading branch information
JohanGallardo authored May 2, 2024
2 parents 3ace14c + 325245c commit 45ef7b9
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/app-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Web App Test

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build_and_test:
runs-on: ubuntu-latest

services:
mongo:
image: mongo
env:
MONGO_INITDB_ROOT_USERNAME: ${{ secrets.MONGO_INITDB_ROOT_USERNAME }}
MONGO_INITDB_ROOT_PASSWORD: ${{ secrets.MONGO_INITDB_ROOT_PASSWORD }}
ports:
- 27017:27017

steps:
- uses: actions/checkout@v3

- name: Set up Environment File
run: |
echo "MONGO_INITDB_ROOT_USERNAME=${{ secrets.MONGO_INITDB_ROOT_USERNAME }}" > .env
echo "MONGO_INITDB_ROOT_PASSWORD=${{ secrets.MONGO_INITDB_ROOT_PASSWORD }}" >> .env
- name: Force remove all Docker containers and networks
run: |
docker rm -f $(docker ps -aq) || true
docker network prune -f
docker volume prune -f
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Build Docker Image
run: docker-compose build

- name: Run Docker Containers
run: docker-compose up -d

- name: Run Tests
run: docker exec 5-final-project-spring-2024-mjetteam_p5-web-app_1 pytest

- name: Clean up
if: always()
run: docker-compose down

0 comments on commit 45ef7b9

Please sign in to comment.