Skip to content

refactor: modularize Seigr source code and improve ImmuneSystem test … #27

refactor: modularize Seigr source code and improve ImmuneSystem test …

refactor: modularize Seigr source code and improve ImmuneSystem test … #27

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch: # Allows manual trigger for testing
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3 # Updated to v3
- name: Set up Python
uses: actions/setup-python@v3 # Updated to v3
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install flake8
- name: Run flake8 linting
run: |
flake8 src