Skip to content

Commit

Permalink
Add CI workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Rahul Gopathi <gopathi.1@iitj.ac.in>
  • Loading branch information
RahulGopathi committed Sep 16, 2023
1 parent 07266ed commit 61c75e6
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Continuous Integration

on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.10

- name: Install dependencies
run: |
pip install -r requirements.txt
source env/bin/activate
- name: Run Flake8
run: flake8 .

25 changes: 25 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
annotated-types==0.5.0
anyio==3.7.1
certifi==2023.7.22
charset-normalizer==3.2.0
click==8.1.7
exceptiongroup==1.1.3
fastapi==0.103.1
flake8==6.1.0
greenlet==2.0.2
h11==0.14.0
idna==3.4
mccabe==0.7.0
mysql-connector-python==8.1.0
protobuf==4.21.12
pycodestyle==2.11.0
pydantic==2.3.0
pydantic_core==2.6.3
pyflakes==3.1.0
requests==2.31.0
sniffio==1.3.0
SQLAlchemy==2.0.20
starlette==0.27.0
typing_extensions==4.7.1
urllib3==2.0.4
uvicorn==0.23.2

0 comments on commit 61c75e6

Please sign in to comment.