Confirmation is optional #420
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Python Quality Control | |
on: [pull_request] | |
jobs: | |
build_matrix: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12" ] | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install -r requirements-dev.txt | |
python3 -m pip install wheel | |
shell: bash | |
- name: Run integrity checks | |
run: | | |
export PYTHONPATH=samples:${PYTHONPATH} | |
scripts/version.sh | |
pycodestyle --format=pylint archivist_samples | |
python3 -m pylint archivist_samples | |
black archivist_samples | |
modified=$(git status -s | wc -l) | |
if [ $modified -gt 0 ] | |
then | |
echo "there are $modified files that must be reformatted" | |
exit 1 | |
fi | |
shell: bash |