Skip to content

determine the toolchain generation in hooks #41

determine the toolchain generation in hooks

determine the toolchain generation in hooks #41

Workflow file for this run

name: Static Analysis
on: [push, pull_request, workflow_dispatch]
permissions: read-all
jobs:
python-linting:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Python packages
run: |
pip install --upgrade pip
pip install --upgrade flake8
- name: Run flake8 to verify PEP8-compliance of Python code
run: flake8