Skip to content

fix: add back rowcounts and byte scanned to dbt cli and run_results.json #1401

fix: add back rowcounts and byte scanned to dbt cli and run_results.json

fix: add back rowcounts and byte scanned to dbt cli and run_results.json #1401

Workflow file for this run

name: ci
on:
pull_request:
push:
branches: [main]
jobs:
pre-commit:
name: 'Pre-commit checks'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.x'
- uses: pre-commit/[email protected]
unit_test:
name: 'Unit tests with coverage'
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
make install_deps
- name: Test with pytest
run: |
make unit_test