Skip to content

Update setup.py

Update setup.py #21

Workflow file for this run

name: Build Python Extension
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
- name: Run C static analysis
run: sudo apt-get install -y cppcheck && cppcheck .
- name: Build extension
run: python setup.py bdist_wheel