diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 21:05:39 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 21:05:39 +0300 |
commit | 4526a28b3f2c76a2ee23b842ee1e8627ff1dc384 (patch) | |
tree | 7e5222a69cba5fa5bbe4ccb53ea0649f0f55daa7 | |
parent | README: update (diff) | |
download | cleanup-path-4526a28b3f2c76a2ee23b842ee1e8627ff1dc384.tar.gz cleanup-path-4526a28b3f2c76a2ee23b842ee1e8627ff1dc384.zip |
workflows/test: include windows-latest
-rw-r--r-- | .github/workflows/test.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a836a09..0991990 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,14 +13,15 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-2019, windows-2016] + os: [windows-2016, windows-2019, windows-latest] python: [0, 1] default: [0, 1] include: # Prettier run names. - - {os: windows-2019, name: 2019} - {os: windows-2016, name: 2016} + - {os: windows-2019, name: 2019} + - {os: windows-latest, name: latest} - {default: 0, default_descr: ''} - {default: 1, default_descr: ' + C:\Windows'} - {python: 0, python_descr: ''} |