-
-
Notifications
You must be signed in to change notification settings - Fork 3
38 lines (35 loc) · 799 Bytes
/
Copy pathpython.yml
File metadata and controls
38 lines (35 loc) · 799 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
# eustasy/.Normal 4.0beta13
name: "Normal: Python"
on:
workflow_dispatch:
push:
branches: [main]
paths:
- "**.py"
- ".github/workflows/python.yml"
- ".qlty/configs/ruff.toml"
- ".qlty/qlty.toml"
pull_request:
branches: [main]
paths:
- "**.py"
- ".github/workflows/python.yml"
- ".qlty/configs/ruff.toml"
- ".qlty/qlty.toml"
permissions:
contents: read
jobs:
python:
name: Lint + format
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- uses: eustasy/.normal/python@v4
with:
python-version: ${{ matrix.python-version }}