-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f58715f
commit 48f1d79
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
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 |