We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 121a4f1 commit 7a25412Copy full SHA for 7a25412
.github/workflows/build-and-test.yml
@@ -0,0 +1,41 @@
1
+name: Build and Test
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
+ workflow_dispatch:
9
10
+jobs:
11
+ test:
12
+ name: Build and Test
13
+ runs-on: macos-15
14
15
+ steps:
16
+ - uses: actions/checkout@v4
17
18
+ - name: Set up Python
19
+ uses: actions/setup-python@v5
20
+ with:
21
+ python-version: '3.11'
22
23
+ - name: Install uv
24
+ run: |
25
+ curl -LsSf https://astral.sh/uv/install.sh | sh
26
27
+ - name: Install dependencies
28
29
+ make install
30
31
+ - name: Run linting
32
33
+ make lint
34
35
+ - name: Run formatting check
36
37
+ make format
38
39
+ - name: Run tests
40
41
+ make test
0 commit comments