Skip to content

Use dateutil.parser directly #492

Use dateutil.parser directly

Use dateutil.parser directly #492

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.8', '3.9', '3.10', '3.11']
beancount: ['2.3.4', '3.0']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- run: pip install 'beancount~=${{ matrix.beancount }}'
if: ${{ matrix.beancount != '3.0' }}
- run: pip install 'git+https://github.com/beancount/beancount#egg=beancount'
if: ${{ matrix.beancount == '3.0' }}
- run: pip install -r requirements.txt
- run: python -m unittest discover -p '*_test.py'