Skip to content

Commit 4f1f8cb

Browse files
committed
fix(ci): correct GitHub Actions workflow indentation
1 parent f851145 commit 4f1f8cb

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
15+
- name: Set up Python
16+
uses: actions/setup-python@v5
17+
with:
18+
python-version: "3.11"
19+
20+
- name: Upgrade pip
21+
run: python -m pip install --upgrade pip
22+
23+
- name: Install dependencies
24+
run: pip install -e ".[dev]"
25+
26+
- name: Lint with ruff
27+
run: ruff check .
28+
29+
- name: Check formatting with black
30+
run: black --check .
31+
32+
- name: Run tests
33+
run: pytest

0 commit comments

Comments
 (0)