Skip to content

Update dependency ubuntu to v24 #88

Update dependency ubuntu to v24

Update dependency ubuntu to v24 #88

Workflow file for this run

name: Python code quality check
on:
- push
- pull_request
jobs:
flake8-actinia:
runs-on: ubuntu-24.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) .