Skip to content

Allow multiple materialized views to write to same target (#280) #649

Allow multiple materialized views to write to same target (#280)

Allow multiple materialized views to write to same target (#280) #649

Workflow file for this run

---
name: "lint"
on: # yamllint disable-line rule:truthy
pull_request:
push:
branches-ignore:
- '*_test'
- '*_dev'
- '*_cloud'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Upgrade Setuptools
run: pip install --upgrade setuptools wheel
- name: Install requirements
run: pip install -r dev_requirements.txt
- name: Run lint
run: make lint