summaryrefslogtreecommitdiff
path: root/.github/workflows/ci-windows.yml
blob: 1e6406f124a62a9eca6caa3c2865bc9ceb8cf23b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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