Skip to content

Commit

Permalink
[Add] Better typing and CLI support (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
ileodo authored Apr 26, 2024
1 parent ee1751f commit 36f6736
Show file tree
Hide file tree
Showing 29 changed files with 827 additions and 826 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ name: Python CI

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

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -22,9 +22,9 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pylint
# - name: Analysing the code with pylint
# run: |
# pylint src
# - name: Analysing the code with pylint
# run: |
# pylint src
- uses: psf/black@stable
with:
options: "--check --verbose"
Expand Down
Loading

0 comments on commit 36f6736

Please sign in to comment.