Skip to content

Support Predicates

Support Predicates #21

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python package
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 mypy pylint coverage
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
flake8 ./tests/*.py ./logic/*.py --max-line-length=120
- name: Lint with pylint
continue-on-error: true
run: |
pylint ./tests/*.py ./logic/*.py --max-line-length=120 --disable W1114 --disable C0103
# W1114: arguments-out-of-order (pylint getting confused)
# C0103: invalid-name
# R0914: too-many-locals
# R0911: too-many-return-statements
# R0912: too-many-branches
# R0915: too-many-statements
# R0903: too-few-public-methods
- name: Type checker with mypy
run: |
mypy ./tests/*.py ./logic/*.py
- name: Test with python unittest
run: |
coverage run --omit="*/test*" -m unittest discover --verbose
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}