Remove bdist_wheel #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
env: | |
CFLAGS: -Wno-error=implicit-function-declaration | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ['ubuntu-20.04', 'windows-2019', 'macos-11'] | |
python-version: ['3.7', '3.8', '3.9'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Restore cache (Ubuntu) | |
uses: actions/cache@v2 | |
if: startsWith(matrix.os, 'ubuntu-') | |
with: | |
path: ~/.cache/pip | |
key: test-pip-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('requirements-test.txt', '.github/workflows/test.yml') }} | |
restore-keys: test-pip-${{ matrix.os }}-${{ matrix.python-version }}- | |
- name: Restore cache (MacOS) | |
uses: actions/cache@v2 | |
if: startsWith(matrix.os, 'macos-') | |
with: | |
path: ~/Library/Caches/pip | |
key: test-pip-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('requirements-test.txt', '.github/workflows/test.yml') }} | |
restore-keys: test-pip-${{ matrix.os }}-${{ matrix.python-version }}- | |
- name: Restore cache (Windows) | |
uses: actions/cache@v2 | |
if: startsWith(matrix.os, 'windows-') | |
with: | |
path: ~\AppData\Local\pip\Cache | |
key: test-pip-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('requirements-test.txt', '.github/workflows/test.yml') }} | |
restore-keys: test-pip-${{ matrix.os }}-${{ matrix.python-version }}- | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install wheel==0.35.1 | |
pip install Cython==0.29.28 | |
pip install setuptools==41.2.0 | |
pip install -r requirements-test.txt | |
- name: Invoke Test | |
run: inv test --cov | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
file: coverage.xml | |
fail_ci_if_error: false | |
verbose: true |