Add GitHub Actions CI workflow

This commit is contained in:
vedika-zangoh 2026-01-05 15:19:33 +05:30 committed by GitHub
parent 2579ce9f18
commit 1ab7f5aad7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

21
.github/workflows/python-ci.yml vendored Normal file
View file

@ -0,0 +1,21 @@
name: Python CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install flake8
run: pip install flake8
- name: Run flake8
run: flake8 .