Skip to content

Commit

Permalink
Setup GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
aktech authored Mar 12, 2024
1 parent c9eae4d commit 37706c2
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Test
on:
push:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Start Docker compose
run: |
docker-compose up -d
sleep 10
- name: Run Tests
run: |
docker-compose exec app pytest tests/ -v

0 comments on commit 37706c2

Please sign in to comment.