File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88permissions :
99 contents : write
1010
11+ jobs :
12+ build :
13+ runs-on : ubuntu-latest
14+ strategy :
15+ matrix :
16+ python-version :
17+ - " 3.11"
18+ - " 3.12"
19+ - " 3.13"
20+ - " 3.14"
21+ steps :
22+ - uses : actions/checkout@v6
23+ ---
24+ name : Python package
25+ on :
26+ pull_request :
27+ branches :
28+ - master
29+
30+ permissions :
31+ contents : write
32+
1133jobs :
1234 build :
1335 runs-on : ubuntu-latest
2547 run : |
2648 sudo apt-get update
2749 sudo apt-get install -y unixodbc-dev
50+ - name : Install uv and set Python version
51+ uses : astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b
52+ with :
53+ python-version : ${{ matrix.python-version }}
54+ - name : Install dependencies
55+ run : uv sync --dev
56+ - name : Lint with Ruff
57+ run : |
58+ uv run ruff check . --fix
2859
2960 - name : Install uv and set Python version
3061 uses : astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b
You can’t perform that action at this time.
0 commit comments