update images #5501
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: catChecker | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 5 | |
matrix: | |
python-version: [3.10.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
sudo apt-get install libpq-dev libxml2-dev libxslt-dev python3 | |
python -m pip install --upgrade pip | |
pip install wheel flake8==5.0.4 flake8-print flake8-quotes | |
pip install -r requirements.txt | |
- name: Check for showstoppers | |
run: | | |
# stop the build if there are Python syntax errors | |
flake8 . --count --select=E999 --show-source --statistics --exclude="exampleconfig.py" |