forked from ChelseaKR/power-content-check
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (48 loc) · 1.34 KB
/
Copy pathci.yml
File metadata and controls
60 lines (48 loc) · 1.34 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
verify:
name: Verify (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13", "3.14"]
steps:
- name: Check out the repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Install uv
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
with:
enable-cache: true
python-version: ${{ matrix.python-version }}
- name: Install the locked dependency set
run: uv sync --locked
- name: Lint
run: uv run ruff check .
- name: Formatting
run: uv run ruff format --check .
- name: Types
run: uv run mypy
- name: Tests and coverage floor
run: uv run pytest
- name: Self check, the catalog renders
run: uv run power-content-check catalog > /dev/null
- name: Self check, an empty run is not a pass
run: |
set +e
uv run power-content-check check
code=$?
set -e
test "$code" -eq 3