Skip to content

Commit

Permalink
Merge pull request #197 from sympy/github-actions
Browse files Browse the repository at this point in the history
Setup CI via GitHub Actions
  • Loading branch information
aktech committed Mar 12, 2024
2 parents ba6b053 + 3f52d07 commit ea6aa5d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Test
on:
push:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Start Docker compose
run: |
docker-compose up -d
sleep 10
- name: Run Tests
run: |
docker-compose exec -T app nosetests app/test -vv
docker-compose exec -T app casperjs test app/test

0 comments on commit ea6aa5d

Please sign in to comment.