blob: d56adf2cb39f698172dcab1d02cc88ee5043f46b (
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
|
name: Build/test on MacOS
# This workflow is triggered on pushes to the repository.
on: [push]
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'},
]
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 }}
|