Skip to content

Commit 489f3d3

Browse files
committed
Update main.yml
1 parent 4a9b1d2 commit 489f3d3

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,23 +27,29 @@ jobs:
2727

2828
steps:
2929
- uses: actions/checkout@v5
30+
3031
- name: Set up Python ${{ matrix.python-version }}
3132
uses: actions/setup-python@v6
3233
with:
3334
python-version: ${{ matrix.python-version }}
3435
cache: "pip"
36+
3537
- name: Install dependencies
3638
run: |
37-
pip install -e ".[dev,all_extras]"
39+
pip install ".[dev,all_extras]"
40+
3841
- name: Test with pytest
3942
run: |
4043
pytest ./tests
44+
4145
- name: Check with isort
4246
run: |
4347
isort --check --diff .
48+
4449
- name: Check with black
4550
run: |
4651
black --check --diff .
52+
4753
- name: Check with flake8
4854
run: |
4955
flake8 --show-source --statistics .

0 commit comments

Comments
 (0)