parser: Allow to use reserved words as table names in FROM clause #484
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |