Skip to content

Commit c2b0fe7

Browse files
committed
fix bad indentation in build workflow
1 parent d993b91 commit c2b0fe7

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: ⚙️ Build
22

3-
on: [push]
3+
on: [ push ]
44

55
jobs:
66
build:
@@ -17,12 +17,12 @@ jobs:
1717
fetch-depth: 1
1818
- name: Set up Python ${{ matrix.python-version }} 🐍
1919
uses: actions/setup-python@v5.1.0
20-
with:
21-
python-version: ${{ matrix.python-version }}
20+
with:
21+
python-version: ${{ matrix.python-version }}
2222
- name: Install dependencies ⚙️
23-
run: |
24-
python -m pip install --upgrade pip
25-
pip install -U -e .[testing]
23+
run: |
24+
python -m pip install --upgrade pip
25+
pip install -U -e .[testing]
2626
- name: Test 🧪
27-
run: |
28-
python -m unittest discover
27+
run: |
28+
python -m unittest discover

0 commit comments

Comments
 (0)