Skip to content

Commit

Permalink
ci: add github actions smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrifiro committed Oct 24, 2023
1 parent 9da97ce commit 2525352
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/smoke-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Smoke Test
on:
push:
branches: [main]
pull_request:

jobs:
smoke-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build image
run: |
cd test
docker-compose build
- name: Test image
run: |
cd test
bash -x smoke-test.sh
env:
CI: true

0 comments on commit 2525352

Please sign in to comment.