Skip to content

Commit 3bc8f27

Browse files
committed
Add workflow for testing types
1 parent e07a70c commit 3bc8f27

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/test-style.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
source:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: oven-sh/setup-bun@v2
17+
with:
18+
bun-version: latest
19+
- uses: actions/setup-python@v5
20+
with:
21+
python-version: "3.x"
22+
- name: Install Python Dependencies
23+
run: |
24+
pip3 install hatch uv
25+
- name: Run Tests
26+
run: |
27+
hatch fmt --check

0 commit comments

Comments
 (0)