Merge pull request #704 from Mayank77maruti/main #2
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: Smoke Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-and-smoke-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Build Docker image | |
run: docker build -t phoenix-app . | |
- name: Run Docker container | |
run: | | |
docker run -d --name phoenix-container -p 3000:80 phoenix-app | |
sleep 10 # Give some time for the container to start | |
- name: Smoke test | |
run: | | |
# Example smoke test using curl | |
curl --fail http://localhost:3000/ || (docker logs phoenix-container && exit 1) | |
- name: Cleanup | |
run: | | |
docker stop phoenix-container | |
docker rm phoenix-container |