We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8f962e commit 2fd6e64Copy full SHA for 2fd6e64
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,22 @@
1
+name: Lint and Test
2
+on:
3
+ push:
4
+
5
+jobs:
6
+ lint-and-test:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v4
11
12
+ - name: Install uv
13
+ uses: astral-sh/setup-uv@v6
14
+ with:
15
+ version-file: "pyproject.toml"
16
+ enable-cache: true
17
18
+ - name: pytest
19
+ run: uv run --frozen pytest
20
21
+ - name: pyright
22
+ run: uv run --frozen pyright
0 commit comments