summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/tests.yml10
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index e46833a..e0d7263 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -4,12 +4,16 @@ name: Tests
on: [push, pull_request]
jobs:
- linux-tests:
- name: Linux Tests
- runs-on: ubuntu-latest
+ no-extras:
+ name: Tests Without Extras
+ runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
+ os: [ubuntu-latest]
+ include:
+ - {python-version: 3.9, os: windows-latest}
+ - {python-version: 3.9, os: macos-latest}
steps:
- name: Checkout code