Skip to content

Commit 36f6736

Browse files
authored
[Add] Better typing and CLI support (#20)
1 parent ee1751f commit 36f6736

29 files changed

+827
-826
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ name: Python CI
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: ["main"]
66
pull_request:
7-
branches: [ "main" ]
7+
branches: ["main"]
88

99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ["3.8", "3.9", "3.10"]
14+
python-version: ["3.10"]
1515
steps:
1616
- uses: actions/checkout@v3
1717
- name: Set up Python ${{ matrix.python-version }}
@@ -22,9 +22,9 @@ jobs:
2222
run: |
2323
python -m pip install --upgrade pip
2424
pip install pylint
25-
# - name: Analysing the code with pylint
26-
# run: |
27-
# pylint src
25+
# - name: Analysing the code with pylint
26+
# run: |
27+
# pylint src
2828
- uses: psf/black@stable
2929
with:
3030
options: "--check --verbose"

0 commit comments

Comments
 (0)