summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2020-05-19 01:02:01 -0700
committerTimothy Crosley <timothy.crosley@gmail.com>2020-05-19 01:02:01 -0700
commitee588dbb35e986a2f859ff75504331cdf5e0b5f2 (patch)
tree125c28c6ec52bdd49f41a065879031e6dfe20969
parent34d3419d1622880989b2cb8cfb93257f76bb515e (diff)
downloadisort-feature/try-windows-based-testing.tar.gz
Attempt to install poetry on windowsfeature/try-windows-based-testing
-rw-r--r--.github/workflows/test.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 3ae65a26..6f76561e 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -9,11 +9,16 @@ jobs:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8]
- os: [ubuntu-latest, ubuntu-18.04, macos-latest]
+ os: [ubuntu-latest, ubuntu-18.04, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
+ - name: Install Poetry Windows
+ if: matrix.os == 'windows-latest'
+ run: |
+ curl -O -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py
+ python get-poetry.py
- name: Ubuntu cache
uses: actions/cache@v1
if: startsWith(matrix.os, 'ubuntu')