summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yaml')
-rw-r--r--.github/workflows/ci.yaml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 105aec1..6444a72 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -20,9 +20,10 @@ jobs:
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
- run: python -m pip install .[docs,test]
- - name: Run unit tests
- run: make check
+ run: python -m pip install tox
+ - name: Run unit tests (via tox)
+ # Run tox using the version of Python in `PATH`
+ run: tox -e py
docs:
name: Build docs
runs-on: ubuntu-latest