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 8c39bfa commit e4ed4d9Copy full SHA for e4ed4d9
.github/workflows/system.yml
@@ -0,0 +1,27 @@
1
+name: system
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches: [main]
7
8
+jobs:
9
+ pre-commit:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ - name: Install uv
14
+ uses: astral-sh/setup-uv@v2
15
+ - name: Set up Python
16
+ run: uv venv --python 3.12
17
+ - name: Set up Docker
18
+ uses: docker/setup-buildx-action@v3
19
+ - name: Install the project
20
+ run: uv sync
21
+ - name: Clone
22
+ run: uv run commit0 clone
23
+ - name: Setup
24
+ run: uv run commit0 build
25
+ - name: Test
26
+ run: uv run commit0 test
27
0 commit comments