Skip to content

feat: add support for dbt 1.6 #35

feat: add support for dbt 1.6

feat: add support for dbt 1.6 #35

Workflow file for this run

name: Linters
on: pull_request
jobs:
linters:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install poetry
poetry config virtualenvs.create false
poetry install --no-root
- name: Black
run: black --check dbt_coverage