We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92b4127 commit 849a28cCopy full SHA for 849a28c
1 file changed
.github/workflows/lint.yml
@@ -9,6 +9,32 @@ on:
9
- main
10
11
jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout repository
16
+ uses: actions/checkout@v6
17
+
18
+ - name: Setup Python
19
+ uses: actions/setup-python@v6
20
+ with:
21
+ python-version-file: "pyproject.toml"
22
23
+ - name: Install uv
24
+ uses: astral-sh/setup-uv@v7
25
26
+ enable-cache: true
27
28
+ - name: Run tests
29
+ uses: uv run pytest --junit-xml=pytest.xml
30
31
+ - name: Publish Test Results
32
+ if: ${{ always() }}
33
+ uses: mikepenz/action-junit-report@v5
34
35
+ report_paths: "**/*.xml"
36
+ annotate_only: ${{ github.event_name == 'pull_request' }}
37
38
lint:
39
runs-on: ubuntu-latest
40
steps:
0 commit comments