Run Tests on Pull Request #9
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: Run Tests on Pull Request | |
on: | |
pull_request: | |
branches: | |
- '**' | |
workflow_dispatch: # Manual trigger | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install Docker Compose | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y docker-compose | |
- name: Copying env file | |
run: cp .env.test.example .env | |
- name: Build dist file in Python container | |
run: sudo make start | |
- name: Serve all backdoors | |
run: sudo make serve_all_backdoors | |
# Run pytest in the python_app container | |
- name: Run Pytest | |
run: | | |
sudo docker exec -d molehole_testing_python_app pytest |