30 lines
766 B
YAML
30 lines
766 B
YAML
name: Test
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
name: Test cibuildwheel on ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-18.04, windows-latest, macos-latest]
|
|
python_version: ['3.7']
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/setup-python@v1
|
|
name: Install Python ${{ matrix.python_version }}
|
|
with:
|
|
python-version: ${{ matrix.python_version }}
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install -r requirements-dev.txt
|
|
- name: Install Visual C++ for Python 2.7
|
|
if: startsWith(matrix.os, 'windows')
|
|
run: |
|
|
choco install vcpython27 -f -y
|
|
- name: Test cibuildwheel
|
|
run: |
|
|
python ./bin/run_tests.py
|