diff options
author | Maxim Devaev <[email protected]> | 2022-07-10 19:42:12 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2022-07-10 19:42:12 +0300 |
commit | 50b9bb5950fad440261160aaed747d7f83c8e520 (patch) | |
tree | b10ab7824244385a6a3541b0824adef4cb6d3219 /.github/workflows/tox.yml | |
parent | 7bb1490e9ea96dd7ed7304bd1bef60f3faed6923 (diff) |
style fix
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" |