Add Stack Dependecies V2 docs #1145
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
name: Quality Assurance | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
pre-commit: | |
name: pre-commit | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/[email protected] | |
with: | |
# KLUDGE: This separator, in combination with the leading and trailing single quotes | |
# in the pre-commit command below, handle file names with spaces. | |
separator: "' '" | |
- name: Set Python up | |
uses: actions/[email protected] | |
id: set-python-up | |
with: | |
cache: pip | |
cache-dependency-path: requirements-qa.txt | |
python-version-file: .python-version | |
- name: Install pre-commit | |
run: pip install -r requirements-qa.txt | |
- name: Cache pre-commit environments | |
uses: actions/[email protected] | |
with: | |
path: ~/.cache/pre-commit/ | |
key: pre-commit-${{ env.pythonLocation }}-${{ hashFiles('.pre-commit-config.yaml') }} | |
- name: Run pre-commit | |
run: | | |
pre-commit run --color=always --files '${{ steps.changed-files.outputs.all_changed_files }}' |