-
Notifications
You must be signed in to change notification settings - Fork 23
40 lines (40 loc) · 1.29 KB
/
install.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: install
on:
- push
- pull_request
jobs:
install:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
# The oldest supported python version
python-version: '3.7'
# Install dependencies for the example importers
- run: sudo apt install poppler-utils
# There are no released packages for beancount v3. Install from Git
- run: python -m pip install git+https://github.com/beancount/beancount#egg=beancount
- 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