Skip to content

Commit 1f44718

Browse files
committed
commit
1 parent 6c475f1 commit 1f44718

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/main.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Main workflow
2+
3+
4+
jobs:
5+
linting:
6+
name: python
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v4
11+
12+
- name: Install uv
13+
uses: astral-sh/setup-uv@v5
14+
with:
15+
# Install a specific version of uv.
16+
version: "0.6.2"
17+
18+
- name: Set up Python
19+
run: uv python install
20+
21+
- name: Run tests
22+
# For example, using `pytest`
23+
run: uv run black --check .

0 commit comments

Comments
 (0)