diff options
| author | engn33r <engn33r@users.noreply.github.com> | 2021-02-27 14:05:20 -0500 |
|---|---|---|
| committer | engn33r <engn33r@users.noreply.github.com> | 2021-02-27 14:05:20 -0500 |
| commit | 088ac9ed4b07b24bd3bf0a1b2e740bc5d0ed2aff (patch) | |
| tree | dd64b7b9930221a06ef30fbb6e55b6d5e78e300c | |
| parent | fbb037befd8205ae3e06670b70e57e7e09cf4ef3 (diff) | |
| download | websocket-client-088ac9ed4b07b24bd3bf0a1b2e740bc5d0ed2aff.tar.gz | |
Reduce workload of GitHub Action strategy
| -rw-r--r-- | .github/workflows/build.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d625922..04b2daf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,6 +11,7 @@ jobs: with: python-version: 3.9 - run: | + pip install six TEST_WITH_INTERNET=1 python setup.py test pip install coverage pip install codecov @@ -25,7 +26,7 @@ jobs: strategy: matrix: - python-version: [2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9] + python-version: [3.7, 3.8, 3.9] os: [ubuntu-latest, macOS-latest, windows-latest] steps: @@ -36,7 +37,9 @@ jobs: python-version: ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }} wheel run: | - python -m pip install -U pip setuptools wheel + pip install -U pip setuptools wheel + pip install docutils + pip install -U six python -c "import setuptools; print(setuptools.__version__)" - TEST_WITH_INTERNET=0 python setup.py test +# TEST_WITH_INTERNET=0 python setup.py test python setup.py check -r -s |
