Skip to content

Commit

Permalink
Final Version!.
Browse files Browse the repository at this point in the history
  • Loading branch information
Symbolexe authored Sep 22, 2024
1 parent 147925a commit 99483a7
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: Python Package CI

on:
push:
branches:
Expand All @@ -10,7 +9,6 @@ on:

jobs:
build:

runs-on: ubuntu-latest

strategy:
Expand All @@ -30,18 +28,12 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install googlesearch-python colorama tabulate
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
pip install flake8
# Replace 'brat.py' with the correct Python file name you want to lint
flake8 CortexLink.py # <-- Update this to match your main script file
# Uncomment below for stricter linting (build fails on lint errors)
# flake8 --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 CortexLink.py
- name: Run tests
run: |
echo "No tests available"
# Replace with actual test command if tests exist
# python -m unittest discover

0 comments on commit 99483a7

Please sign in to comment.