Skip to content

build(deps): bump urllib3 from 1.26.18 to 1.26.19 #184

build(deps): bump urllib3 from 1.26.18 to 1.26.19

build(deps): bump urllib3 from 1.26.18 to 1.26.19 #184

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