Skip to content

Bump sqlparse from 0.5.5 to 0.6.0 #283

Bump sqlparse from 0.5.5 to 0.6.0

Bump sqlparse from 0.5.5 to 0.6.0 #283

Workflow file for this run

---
name: Lint and Test
on:
push:
branches-ignore:
- main
workflow_dispatch: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
jobs:
lint-and-test:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
python-version: [ 3.12 ]
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
submodules: recursive
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: "pipenv"
pip-install: pipenv
- name: Install dependencies
run: pipenv install --dev
- name: Check Airflow Constraints
run: make compare-dependencies
- name: Lint the role
run: make lint
- name: Run Pytest
run: make test