summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Morton <seth.m.morton@gmail.com>2020-11-23 20:40:41 -0800
committerSeth Morton <seth.m.morton@gmail.com>2020-11-23 20:41:16 -0800
commitee5c341c0748b94c564ba7b622eaf644629f58f3 (patch)
treedf72136adcf82e34ee88b6853f5e6bb11853e641
parentea29081da6e7f4b14e8554446a8289d4d2015748 (diff)
downloadnatsort-ee5c341c0748b94c564ba7b622eaf644629f58f3.tar.gz
Run some tests on macOS and windows
-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