We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a9b1d2 commit 489f3d3Copy full SHA for 489f3d3
1 file changed
.github/workflows/main.yml
@@ -27,23 +27,29 @@ jobs:
27
28
steps:
29
- uses: actions/checkout@v5
30
+
31
- name: Set up Python ${{ matrix.python-version }}
32
uses: actions/setup-python@v6
33
with:
34
python-version: ${{ matrix.python-version }}
35
cache: "pip"
36
37
- name: Install dependencies
38
run: |
- pip install -e ".[dev,all_extras]"
39
+ pip install ".[dev,all_extras]"
40
41
- name: Test with pytest
42
43
pytest ./tests
44
45
- name: Check with isort
46
47
isort --check --diff .
48
49
- name: Check with black
50
51
black --check --diff .
52
53
- name: Check with flake8
54
55
flake8 --show-source --statistics .
0 commit comments