Skip to content

Merge pull request #86 from radarhere/actions #41

Merge pull request #86 from radarhere/actions

Merge pull request #86 from radarhere/actions #41

Workflow file for this run

name: Test
on: [push, pull_request]
env:
FORCE_COLOR: 1
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy-3.9", "pypy-3.10"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get install libsane-dev
# No tests: just check it can build and install
- name: Test build and install
shell: bash
run: |
python3 setup.py build
python3 -m pip install .
- name: Lint
shell: bash
run: |
pip install pycodestyle pyflakes
pycodestyle --statistics --count . || true
pyflakes . | tee >(wc -l)