-
Notifications
You must be signed in to change notification settings - Fork 5
87 lines (80 loc) · 2.21 KB
/
typecheck.yml
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: Typecheck
on:
push:
branches: main
paths-ignore:
- "**.json"
- "**.md"
- "**.csv"
- "**.html"
pull_request:
paths-ignore:
- "**.json"
- "**.md"
- "**.csv"
- "**.html"
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
permissions:
contents: read
env:
FORCE_COLOR: 1 # Request colored output from CLI tools supporting it
TERM: xterm-256color # needed for FORCE_COLOR to work on mypy on Ubuntu, see https://github.com/python/mypy/issues/13817
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
mypy:
name: Check code with mypy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v3
with:
version: "latest"
- run: uv run --python=3.11 --extra=dev mypy
pyright:
name: Run pyright on the codebase
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- uses: astral-sh/setup-uv@v3
with:
version: "latest"
- run: uv pip install -e ".[dev]" --system
- run: uv pip freeze
- name: Run pyright
uses: jakebailey/pyright-action@v2
with:
version: PATH
create-issue-on-failure:
name: Create an issue if daily typecheck failed
runs-on: ubuntu-latest
needs: [mypy, pyright]
if: >-
${{
github.repository == 'AlexWaygood/typeshed-stats'
&& always()
&& github.event_name == 'schedule'
&& (
needs.mypy.result == 'failure'
|| needs.pyright.result == 'failure'
)
}}
permissions:
issues: write
steps:
- uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
await github.rest.issues.create({
owner: "AlexWaygood",
repo: "typeshed-stats",
title: `Daily typecheck failed on ${new Date().toDateString()}`,
body: "Runs are listed here: https://github.com/AlexWaygood/typeshed-stats/actions/workflows/typecheck.yml",
})