Skip to content

Atomic view creation in view.sql #654

Atomic view creation in view.sql

Atomic view creation in view.sql #654

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