We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e07a70c commit 3bc8f27Copy full SHA for 3bc8f27
.github/workflows/test-style.yml
@@ -0,0 +1,27 @@
1
+name: Test
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
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
21
+ python-version: "3.x"
22
+ - name: Install Python Dependencies
23
+ run: |
24
+ pip3 install hatch uv
25
+ - name: Run Tests
26
27
+ hatch fmt --check
0 commit comments