-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
52 lines (44 loc) · 1.04 KB
/
typing.yml
File metadata and controls
52 lines (44 loc) · 1.04 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
name: Typing
on: [push, pull_request, workflow_dispatch]
permissions: {}
env:
FORCE_COLOR: 1
PREK_COLOR: always
RUFF_OUTPUT_FORMAT: github
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
typing:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [
"3.14",
"3.13",
"3.12",
"3.11",
"3.10",
]
name: Typing Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-python@v6
with:
python-version: "3.x"
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Typing
run: uvx --with tox-uv tox -e mypy -- --python-version=${{ matrix.python-version }}
success:
permissions:
contents: none
needs: typing
runs-on: ubuntu-latest
name: Typing Successful
steps:
- name: Success
run: echo Typing Successful