Skip to content

Commit

Permalink
Migrate quotes service
Browse files Browse the repository at this point in the history
  • Loading branch information
Tcintra committed Dec 12, 2023
1 parent 80d9078 commit b4d122a
Show file tree
Hide file tree
Showing 20 changed files with 1,912 additions and 2 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Run Black
run: black --check .
- name: Run Pylint
run: pylint src
- name: Run Mypy
run: mypy src
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Custom
*logs/

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
Loading

0 comments on commit b4d122a

Please sign in to comment.