Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add workflow to test app can be started #93

Merged
merged 1 commit into from
Mar 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Test app start

on:
push:
branches-ignore:
- 'master'
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Build docker image
run: docker build --tag rws --no-cache .

- name: Run app in docker container
run: |
echo "CONTAINER_ID=$(docker run \
--env RWS_CFG=/app/config.default \
--env RWS_CREDENTIALS='{"user": "password"}' \
--env S3_ACCESS_KEY=foo \
--env S3_SECRET_KEY=bar \
--env S3_REGION=foobar \
--env S3_URL=http://127.0.0.1:9000 \
--env S3_BUCKET=barfoo \
--publish 5000:5000 \
--detach rws)" >> $GITHUB_ENV

- name: Check app is running
run: |
sleep 10 # give the app enough time to start
docker logs ${CONTAINER_ID} 2>&1 | tee log.txt
grep 'Press CTRL+C to quit' log.txt