-
-
Notifications
You must be signed in to change notification settings - Fork 7
42 lines (35 loc) · 917 Bytes
/
test-python.yml
File metadata and controls
42 lines (35 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Python Test
permissions: {}
on:
push:
branches:
- main
- renovate/**
pull_request:
branches:
- main
jobs:
test-python:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
defaults:
run:
working-directory: python
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false
- name: Install uv and set the python version
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
with:
enable-cache: true
python-version: ${{ matrix.python-version }}
version: "0.11.21"
- name: Run linting
run: uv run ruff check
- name: Run formatting
run: uv run ruff format
- name: Run tests
run: uv run pytest