summaryrefslogtreecommitdiff
path: root/.github/workflows/ci-windows.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci-windows.yml')
-rw-r--r--.github/workflows/ci-windows.yml28
1 files changed, 0 insertions, 28 deletions
diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml
deleted file mode 100644
index 1e6406f..0000000
--- a/.github/workflows/ci-windows.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-name: Build/test on Windows
-# This workflow is triggered on pushes to the repository.
-on: [push, pull_request]
-
-jobs:
- test:
- runs-on: windows-2019
- strategy:
- matrix:
- py: [
- '2.7',
- '3.5',
- '3.6',
- '3.7',
- '3.8'
- ]
- architecture: ['x86', 'x64']
- name: "Python: ${{ matrix.py }} (${{ matrix.architecture }})"
- steps:
- - uses: actions/checkout@master
- - name: Setup python
- uses: actions/setup-python@v1
- with:
- python-version: ${{ matrix.py }}
- architecture: ${{ matrix.architecture }}
- - run: pip install tox
- - name: Running tox
- run: tox -e py