Added information about Space inheritance on modules #1187
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/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v39 | |
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/setup-python@v4 | |
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/cache@v3 | |
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 }}' |