Skip to content

build(deps): bump beancount from 2.3.6 to 3.0.0 #182

build(deps): bump beancount from 2.3.6 to 3.0.0

build(deps): bump beancount from 2.3.6 to 3.0.0 #182

Workflow file for this run

name: beancount-n26
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Set up poetry
run: |
python -m pip install --upgrade poetry
poetry run pip install --upgrade pip setuptools
- name: Install dependencies
run: poetry install
- name: Lint
run: make lint
- name: Test
run: make test