Skip to content

Commit 6fde6fe

Browse files
committed
Fix workflow file indentation
1 parent fa5ccd8 commit 6fde6fe

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.github/workflows/test-dependencies.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@ jobs:
1010
build:
1111

1212
runs-on: ubuntu-latest
13-
strategy:
14-
matrix:
15-
python-version: [3.11, 3.12, 3.13]
13+
strategy:
14+
matrix:
15+
python-version: [3.11, 3.12, 3.13]
1616

17-
steps:
18-
- uses: actions/checkout@v4
19-
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v5
21-
with:
22-
python-version: ${{ matrix.python-version }}
23-
- name: Install dependencies
24-
run: |
25-
python -m pip install --upgrade pip
26-
# install package and requirements
27-
pip install ".[all]"
28-
- name: Test with pytest
29-
run: |
30-
pytest
17+
steps:
18+
- uses: actions/checkout@v4
19+
- name: Set up Python ${{ matrix.python-version }}
20+
uses: actions/setup-python@v5
21+
with:
22+
python-version: ${{ matrix.python-version }}
23+
- name: Install dependencies
24+
run: |
25+
python -m pip install --upgrade pip
26+
# install package and requirements
27+
pip install ".[all]"
28+
- name: Test with pytest
29+
run: |
30+
pytest

0 commit comments

Comments
 (0)