File tree Expand file tree Collapse file tree 2 files changed +14
-16
lines changed Expand file tree Collapse file tree 2 files changed +14
-16
lines changed Original file line number Diff line number Diff line change 12
12
13
13
jobs :
14
14
pre-commit :
15
- name : Static Analysis (pre-commit)
15
+ name : Static Analysis
16
16
runs-on : ubuntu-latest
17
17
steps :
18
18
- uses : actions/checkout@v4
19
- - uses : actions/setup-python@v5
19
+ - name : Setup Python
20
+ uses : actions/setup-python@v5
20
21
with :
21
22
python-version : " 3.12"
22
- -
uses :
pre-commit/[email protected]
23
+ - name : Setup poetry
24
+ uses : abatilo/actions-poetry@v2
25
+ with :
26
+ poetry-version : " 1.8.3"
27
+ - name : Install dependencies
28
+ run : poetry install
29
+ - run : echo "$(poetry env info --path)/bin" >> $GITHUB_PATH
30
+ - uses : chartboost/ruff-action@v1
31
+ with :
32
+ args : format --check
33
+ - uses : jakebailey/pyright-action@v2
23
34
tests :
24
35
name : Tests
25
36
runs-on : ubuntu-latest
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments