diff options
Diffstat (limited to '.github/workflows/tox.yml')
-rw-r--r-- | .github/workflows/tox.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml new file mode 100644 index 00000000..ed0528d4 --- /dev/null +++ b/.github/workflows/tox.yml @@ -0,0 +1,20 @@ +name: TOX CI + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Building testenv ... + run: make testenv + + - name: Running tests ... + run: make tox CMD="tox -c testenv/tox.ini" |