Make GPIO/SPI/FTDI optional and switch to rpi-lgpio #202
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: luma.core | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-minor-version: [8, 9, 10, 11, 12, 13] | |
name: Python 3.${{ matrix.python-minor-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup pip cache | |
uses: actions/cache@v4 | |
id: pipcache | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-v2-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip-v2- | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
id: setuppy | |
with: | |
python-version: 3.${{ matrix.python-minor-version }} | |
- name: Display Python version | |
run: python -c "import sys; print(sys.version)" | |
- name: Install Python packages | |
run: pip install --upgrade setuptools pip wheel tox coveralls | |
- name: Install system dependencies | |
run: sudo apt-get install swig python3-setuptools python3-dev | |
- name: Install lg library | |
run: | | |
cd $RUNNER_TEMP | |
wget http://abyz.me.uk/lg/lg.zip | |
unzip lg.zip | |
cd lg | |
make | |
sudo make install | |
- name: Run tests | |
env: | |
TOX_ENV: py3${{ matrix.python-minor-version }} | |
run: | | |
python_env=$(echo $TOX_ENV | sed -e s/-dev$//) | |
python -m tox -e ${python_env} | |
- name: QA | |
env: | |
TOX_ENV: qa,doc | |
run: python -m tox -e $TOX_ENV | |
- name: Coveralls | |
run: coveralls --service=github | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COVERALLS_FLAG_NAME: ${{ matrix.test-name }} | |
COVERALLS_PARALLEL: true | |
coveralls: | |
name: Coveralls | |
needs: build | |
runs-on: ubuntu-latest | |
container: python:3-slim | |
steps: | |
- name: Finished | |
run: | | |
pip3 install --upgrade coveralls | |
coveralls --finish | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |