summaryrefslogtreecommitdiff
path: root/.github/workflows/ci-macos.yml
blob: c8b6c63f008160a67ab08c36486a7f467b379f4c (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
29
30
name: Build/test on MacOS
# This workflow is triggered on pushes to the repository.
on: [push, pull_request]

jobs:
    test:
        runs-on: macOS-latest
        strategy:
            matrix:
                tox: [
                    {'py': '2.7', 'env': 'py27'},
                    {'py': '3.5', 'env': 'py35'},
                    {'py': '3.6', 'env': 'py36'},
                    {'py': '3.7', 'env': 'py37'},
                    {'py': '3.8', 'env': 'py38'},
                ]
                architecture: ['x64']
        name: "Python: ${{ matrix.tox.py }}"
        steps:
            - uses: actions/checkout@master
            - name: Setup python
              uses: actions/setup-python@v1
              with:
                  python-version: ${{ matrix.tox.py }}
                  architecture: ${{ matrix.architecture }}
            - run: pip install tox
            - name: Running tox
              run: |
                  ulimit -n 4096
                  tox -e ${{ matrix.tox.env }}