-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (28 loc) · 803 Bytes
/
python.yml
File metadata and controls
38 lines (28 loc) · 803 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
name: Python application
on:
workflow_dispatch:
pull_request:
types: [labeled]
permissions:
contents: read
jobs:
build:
name: Python Build
if: github.event_name == 'workflow_dispatch' || github.event.label.name == 'trigger_pipeline'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v3
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: Install the project
run: uv sync --frozen
- name: Run tests
run: uv run --frozen python -m unittest discover tests