Skip to content

Bump sqlparse from 0.4.2 to 0.4.4 in /examples/pyramid #522

Bump sqlparse from 0.4.2 to 0.4.4 in /examples/pyramid

Bump sqlparse from 0.4.2 to 0.4.4 in /examples/pyramid #522

Workflow file for this run

name: pybrake
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, 3.10.9]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r test-requirements.txt
- name: Lint
run: pylint src
- name: Test
run: pytest