Try different import for DAL test #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: End to end Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
e2e_test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build and start the services | |
run: | | |
cd ./Project | |
docker compose build | |
docker compose up -d | |
- name: Run E2E Test | |
run: | | |
cd ./Project/tests | |
chmod +x e2e.sh | |
./e2e.sh | |
- name: Stop the services | |
run: | | |
cd ./Project | |
docker compose down |