Skip to content

NAS-131658 / 25.10 / Lint and unit tests workflow #3

NAS-131658 / 25.10 / Lint and unit tests workflow

NAS-131658 / 25.10 / Lint and unit tests workflow #3

Workflow file for this run

name: flake8
on:
pull_request:
types:
- 'synchronize'
- 'opened'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Analyze the code with flake8
run: flake8 .