Skip to content

Merge pull request #8 from neugartf/bugfix/movements-with-empty-subco… #35

Merge pull request #8 from neugartf/bugfix/movements-with-empty-subco…

Merge pull request #8 from neugartf/bugfix/movements-with-empty-subco… #35

Workflow file for this run

---
name: Test package
on: [push]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install system dependencies
run: sudo apt install -y build-essential libpoppler-cpp-dev pkg-config python3-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 mypy
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: flake8 --per-file-ignores="__init__.py:F401" bbva2pandas
- name: Lint with mypy
run: mypy bbva2pandas
- name: Test with unittest
run: python3 -m unittest discover tests