Skip to content

Update dependency pyscaffold to v4 #87

Update dependency pyscaffold to v4

Update dependency pyscaffold to v4 #87

Workflow file for this run

name: Python code quality check
on:
- push
- pull_request
jobs:
flake8-actinia:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install
run: |
python -m pip install --upgrade pip
pip install flake8==3.8.0
- name: Run Flake8
run: |
flake8 --config=.flake8 --count --statistics --show-source --jobs=$(nproc) .