-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/PyCQA/pylint into argparse-…
…logging
- Loading branch information
Showing
88 changed files
with
779 additions
and
302 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,184 @@ | ||
name: Checks | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- 2.* | ||
pull_request: ~ | ||
|
||
env: | ||
# Also change CACHE_VERSION in the other workflows | ||
CACHE_VERSION: 5 | ||
DEFAULT_PYTHON: 3.8 | ||
PRE_COMMIT_CACHE: ~/.cache/pre-commit | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
prepare-base: | ||
name: Prepare base dependencies | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
outputs: | ||
python-key: ${{ steps.generate-python-key.outputs.key }} | ||
pre-commit-key: ${{ steps.generate-pre-commit-key.outputs.key }} | ||
steps: | ||
- name: Check out code from GitHub | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | ||
id: python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: ${{ env.DEFAULT_PYTHON }} | ||
- name: Generate partial Python venv restore key | ||
id: generate-python-key | ||
run: >- | ||
echo "::set-output name=key::base-venv-${{ env.CACHE_VERSION }}-${{ | ||
hashFiles('setup.cfg', 'requirements_test.txt', 'requirements_test_min.txt') | ||
}}" | ||
- name: Restore Python virtual environment | ||
id: cache-venv | ||
uses: actions/[email protected] | ||
with: | ||
path: venv | ||
key: >- | ||
${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ | ||
steps.generate-python-key.outputs.key }} | ||
restore-keys: | | ||
${{ runner.os }}-${{ steps.python.outputs.python-version }}-base-venv-${{ env.CACHE_VERSION }}- | ||
- name: Create Python virtual environment | ||
if: steps.cache-venv.outputs.cache-hit != 'true' | ||
run: | | ||
python -m venv venv | ||
. venv/bin/activate | ||
python -m pip install -U pip setuptools wheel | ||
pip install -U -r requirements_test.txt | ||
- name: Generate pre-commit restore key | ||
id: generate-pre-commit-key | ||
run: >- | ||
echo "::set-output name=key::pre-commit-${{ env.CACHE_VERSION }}-${{ | ||
hashFiles('.pre-commit-config.yaml') }}" | ||
- name: Restore pre-commit environment | ||
id: cache-precommit | ||
uses: actions/[email protected] | ||
with: | ||
path: ${{ env.PRE_COMMIT_CACHE }} | ||
key: >- | ||
${{ runner.os }}-${{ steps.generate-pre-commit-key.outputs.key }} | ||
restore-keys: | | ||
${{ runner.os }}-pre-commit-${{ env.CACHE_VERSION }}- | ||
- name: Install pre-commit dependencies | ||
if: steps.cache-precommit.outputs.cache-hit != 'true' | ||
run: | | ||
. venv/bin/activate | ||
pre-commit install --install-hooks | ||
pylint: | ||
name: pylint | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
needs: prepare-base | ||
steps: | ||
- name: Check out code from GitHub | ||
uses: actions/[email protected] | ||
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | ||
id: python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: ${{ env.DEFAULT_PYTHON }} | ||
- name: Restore Python virtual environment | ||
id: cache-venv | ||
uses: actions/[email protected] | ||
with: | ||
path: venv | ||
key: | ||
${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ | ||
needs.prepare-base.outputs.python-key }} | ||
- name: Fail job if Python cache restore failed | ||
if: steps.cache-venv.outputs.cache-hit != 'true' | ||
run: | | ||
echo "Failed to restore Python venv from cache" | ||
exit 1 | ||
- name: Restore pre-commit environment | ||
id: cache-precommit | ||
uses: actions/[email protected] | ||
with: | ||
path: ${{ env.PRE_COMMIT_CACHE }} | ||
key: ${{ runner.os }}-${{ needs.prepare-base.outputs.pre-commit-key }} | ||
- name: Fail job if pre-commit cache restore failed | ||
if: steps.cache-precommit.outputs.cache-hit != 'true' | ||
run: | | ||
echo "Failed to restore pre-commit environment from cache" | ||
exit 1 | ||
- name: Run pylint checks | ||
run: | | ||
. venv/bin/activate | ||
pip install -e . | ||
pre-commit run pylint --all-files | ||
spelling: | ||
name: spelling | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
needs: prepare-base | ||
steps: | ||
- name: Check out code from GitHub | ||
uses: actions/[email protected] | ||
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | ||
id: python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: ${{ env.DEFAULT_PYTHON }} | ||
- name: Restore Python virtual environment | ||
id: cache-venv | ||
uses: actions/[email protected] | ||
with: | ||
path: venv | ||
key: | ||
${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ | ||
needs.prepare-base.outputs.python-key }} | ||
- name: Fail job if Python cache restore failed | ||
if: steps.cache-venv.outputs.cache-hit != 'true' | ||
run: | | ||
echo "Failed to restore Python venv from cache" | ||
exit 1 | ||
- name: Run spelling checks | ||
run: | | ||
. venv/bin/activate | ||
pytest tests/ -k unittest_spelling | ||
documentation: | ||
name: documentation | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
needs: prepare-base | ||
steps: | ||
- name: Check out code from GitHub | ||
uses: actions/[email protected] | ||
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | ||
id: python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: ${{ env.DEFAULT_PYTHON }} | ||
- name: Restore Python virtual environment | ||
id: cache-venv | ||
uses: actions/[email protected] | ||
with: | ||
path: venv | ||
key: | ||
${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ | ||
needs.prepare-base.outputs.python-key }} | ||
- name: Fail job if Python cache restore failed | ||
if: steps.cache-venv.outputs.cache-hit != 'true' | ||
run: | | ||
echo "Failed to restore Python venv from cache" | ||
exit 1 | ||
- name: Run checks on documentation code examples | ||
run: | | ||
. venv/bin/activate | ||
pytest doc/test_messages_documentation.py |
Oops, something went wrong.