summaryrefslogtreecommitdiff
path: root/.github/workflows/ci-macos.yml
blob: 384bbe68eba99a4b40416436a51dca3cc3aa274e (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
31
32
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:
                py: [
                    '2.7',
                    '3.5',
                    '3.6',
                    '3.7',
                    '3.8',
                    'pypy2',
                    'pypy3'
                ]
                architecture: ['x64']
        name: "Python: ${{ matrix.py }}"
        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: |
                  ulimit -n 4096
                  tox -e py