Skip to content

Avoid redefining an argument. #403

Avoid redefining an argument.

Avoid redefining an argument. #403

Workflow file for this run

name: test
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
beancount:
- '~=2.3.5'
- '@git+https://github.com/beancount/beancount.git'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- run: pip install 'beancount ${{ matrix.beancount }}'
- run: pip install -r requirements.txt pytest
- run: python -m pytest beangulp