Skip to content

Commit

Permalink
Run tests via GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
aktech authored Aug 25, 2023
1 parent 7b0f114 commit 08724e3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Test

on: push

jobs:
build-linux:
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 app nosetests app/test -vv
docker-compose exec app casperjs test app/test

0 comments on commit 08724e3

Please sign in to comment.