From 79c7ef7a7de53c3409d4a7dfb6f343a69084d58e Mon Sep 17 00:00:00 2001 From: Sean Harkins Date: Thu, 24 Sep 2020 18:05:10 -0500 Subject: [PATCH] Include CI workflow for running tests in tox. --- .github/workflows/tox_tests.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/tox_tests.yml diff --git a/.github/workflows/tox_tests.yml b/.github/workflows/tox_tests.yml new file mode 100644 index 0000000..f548371 --- /dev/null +++ b/.github/workflows/tox_tests.yml @@ -0,0 +1,22 @@ +name: Tox tests + +on: [push] + +jobs: + build_test: + runs-on: ubuntu-latest + strategy: + matrix: + python: [3.6] + + steps: + - uses: actions/checkout@v2 + - name: Setup Python + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python }} + - name: Install Tox and any other packages + run: pip install tox + - name: Run Tox + # Run tox using the version of Python in `PATH` + run: tox -e py