From e40612195dd05af7265ff64d56cf8f44bc20c333 Mon Sep 17 00:00:00 2001 From: Rugved626 Date: Sat, 14 Feb 2026 13:14:56 +0530 Subject: [PATCH] Add GitHub Actions CI workflow --- .github/workflows/python-ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/python-ci.yml diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml new file mode 100644 index 0000000000..3d0a5dc08e --- /dev/null +++ b/.github/workflows/python-ci.yml @@ -0,0 +1,22 @@ +name: Python CI + +on: + push: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - uses: actions/setup-python@v4 + with: + python-version: "3.10" + + - name: Install flake8 + run: pip install flake8 + + - name: Run lint + run: flake8 . || true