summaryrefslogtreecommitdiff
path: root/.github/workflows/pr.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/pr.yml')
-rw-r--r--.github/workflows/pr.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml
new file mode 100644
index 0000000..5c8a829
--- /dev/null
+++ b/.github/workflows/pr.yml
@@ -0,0 +1,20 @@
+name: tox
+on:
+ pull_request:
+ types: [opened, synchronize, reopened, ready_for_review]
+jobs:
+ test:
+ strategy:
+ fail-fast: false
+ matrix:
+ os: [ubuntu-latest] # [macos-latest, ubuntu-latest, windows-latest]
+ python: ['3.7', '3.8', '3.9', 'pypy-3.9'] # Nose fails on Python 3.10+
+ runs-on: ${{ matrix.os }}
+ steps:
+ - uses: actions/checkout@v3
+ - uses: actions/setup-python@v4
+ with:
+ python-version: ${{ matrix.python }}
+ - run: pip install --upgrade pip
+ - run: pip install tox
+ - run: tox -e py