Accelerate block tag iteration #703
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# **what?** | |
# Runs code quality checks on all code commited to the repository. This workflow | |
# should not require any secrets since it runs for PRs from forked repos. By | |
# default, secrets are not passed to workflows running from a forked repos. | |
# **why?** | |
# Ensure code for dbt meets a certain quality standard. | |
# **when?** | |
# This will run for all PRs, when code is pushed to main, and when manually triggered. | |
name: "Check Code Quality" | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
merge_group: | |
types: [checks_requested] | |
workflow_dispatch: | |
permissions: read-all | |
# will cancel previous workflows triggered by the same event and for the same ref for PRs or same SHA otherwise | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name }}-${{ contains(github.event_name, 'pull_request') && github.event.pull_request.head.ref || github.sha }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
code-quality: | |
name: code-quality | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
- name: "Set up Python & Hatch - 3.11" | |
uses: ./.github/actions/setup-python-hatch | |
with: | |
python-version: "3.11" | |
- name: Install pre-commit | |
shell: bash | |
run: pip3 install pre-commit | |
- name: Run Pre-commit Hooks | |
run: pre-commit run --show-diff-on-failure --color=always --all-files |