Skip to content

Commit 14dd652

Browse files
committed
remove precommit
1 parent a5f985c commit 14dd652

File tree

2 files changed

+14
-16
lines changed

2 files changed

+14
-16
lines changed

.github/workflows/ci.yml

+14-3
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,25 @@ env:
1212

1313
jobs:
1414
pre-commit:
15-
name: Static Analysis (pre-commit)
15+
name: Static Analysis
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v4
19-
- uses: actions/setup-python@v5
19+
- name: Setup Python
20+
uses: actions/setup-python@v5
2021
with:
2122
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
2334
tests:
2435
name: Tests
2536
runs-on: ubuntu-latest

.pre-commit-config.yaml

-13
This file was deleted.

0 commit comments

Comments
 (0)