We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7c231e commit 75d570eCopy full SHA for 75d570e
3 files changed
.github/workflows/linters.yaml
@@ -0,0 +1,30 @@
1
+name: Linters
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - '**'
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v3
14
+ - name: Python Setup
15
+ uses: actions/setup-python@v3
16
+ with:
17
+ python-version: 3.13
18
19
+ - name: Install libraries
20
+ run: |
21
+ pip install -e .[development]
22
23
+ - name: mypy
24
+ run: mypy ./src
25
26
+ - name: ruff
27
+ run: ruff check .
28
29
+ - name: flake8
30
+ run: flake8 .
setup.py
@@ -1,7 +1,9 @@
from setuptools import setup
def main() -> None:
setup()
if __name__ == '__main__':
main()
src/app/hello.py
@@ -1,2 +1,2 @@
def hello():
- print('ABC')
+ print('ABC')
0 commit comments