Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Dec 20, 2021
2 parents 266ab06 + a0f456a commit 9a783c2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,25 @@ jobs:
${{ runner.os }},
${{ matrix.python }}
test_cygwin:
strategy:
matrix:
distutils:
- stdlib
- local
runs-on: windows-latest
env:
SETUPTOOLS_USE_DISTUTILS: ${{ matrix.distutils }}
steps:
- uses: actions/checkout@v2
- name: Install Cygwin with Python and tox
run: |
choco install git gcc-core python38-devel python38-pip --source cygwin
C:\\tools\\cygwin\\bin\\bash -l -x -c 'python3.8 -m pip install tox'
- name: Run tests
run: |
C:\\tools\\cygwin\\bin\\bash -l -x -c 'cd $(cygpath -u "$GITHUB_WORKSPACE") && tox -- --cov-report xml'
release:
needs: test
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
Expand Down

0 comments on commit 9a783c2

Please sign in to comment.