types #441
Workflow file for this run
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: install | |
on: | |
- push | |
- pull_request | |
jobs: | |
install: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
# we support >= py37 | |
# but beancount trunk only support py>=39 | |
python-version: '3.9' | |
# Install dependencies for the example importers | |
- run: sudo apt install poppler-utils | |
- run: python -m pip install . | |
- name: Run smoke test | |
run: | | |
cd examples | |
python import.py --help | |
- name: Run example importers unit tests | |
run: | | |
cd examples | |
python -m unittest | |
- name: Run example importers tests | |
run: | | |
cd examples | |
python importers/acme.py test tests/acme --verbose | |
python importers/csvbank.py test tests/csvbank --verbose | |
python importers/utrade.py test tests/utrade --verbose | |
- name: Run example ledger.import | |
run: | | |
cd examples | |
python import.py identify Downloads -v | |
python import.py extract Downloads | |
python import.py archive Downloads -n -o documents |