Merge pull request #36 from crvux/fix-tox-ini #61
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: CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash | |
env: | |
OS: ${{ matrix.os }} | |
PYTHON: ${{ matrix.python-version }} | |
PYTHONIOENCODING: utf-8 | |
PIP_DOWNLOAD_CACHE: ${{ github.workspace }}/../.pip_download_cache | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, macos-latest] | |
python-version: [3.7, 3.8, 3.9, '3.10'] | |
steps: | |
- name: Set git crlf/eol | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- uses: actions/checkout@v3 | |
with: | |
submodules: True | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox tox-gh-actions | |
- name: Install deps with apt helper action | |
uses: ryankurte/[email protected] | |
if: runner.os == 'Linux' | |
with: | |
# architectures to pass to dpkg --add-architecture | |
#architectures: # optional | |
packages: libusb-dev libusb-1.0.0-dev | |
- name: Run tests | |
run: | | |
tox | |
env: | |
PLATFORM: ${{ matrix.os }} | |
- name: Check pkg builds | |
run: | | |
tox -e deploy | |
- name: Check wheel | |
run: | | |
tox -e check | |
- name: Build C tool | |
if: runner.os == 'Linux' | |
run: | | |
tox -e badge | |
env: | |
CC: 'gcc' | |
CXX: 'g++' |