Skip to content

Commit

Permalink
Add GitHub Action to run test
Browse files Browse the repository at this point in the history
  • Loading branch information
hongquan committed Sep 12, 2020
1 parent a65ec63 commit ede2e3e
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: Run test

on:
push

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v1
with:
python-version: 3.7
- uses: Gr1N/setup-poetry@v2
with:
poetry-version: 1.0.5
- run: poetry install --no-root
- run: poetry run pytest

0 comments on commit ede2e3e

Please sign in to comment.