diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 72f68128f..32f560d9e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -36,34 +36,6 @@ defaults: shell: bash jobs: - code-quality: - name: code-quality - - runs-on: ubuntu-latest - - steps: - - name: Check out the repository - uses: actions/checkout@v3 - with: - persist-credentials: false - - - name: Set up Python - uses: actions/setup-python@v4.3.0 - with: - python-version: '3.8' - - - name: Install python dependencies - run: | - python -m pip install --user --upgrade pip - python -m pip install -r dev-requirements.txt - python -m pip --version - pre-commit --version - mypy --version - dbt --version - - - name: Run pre-commit hooks - run: pre-commit run --all-files --show-diff-on-failure - unit: name: unit test / python ${{ matrix.python-version }}