forked from jordemort/action-pyright
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
executable file
·97 lines (97 loc) · 3.41 KB
/
action.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
88
89
90
91
92
93
94
95
96
97
name: "Run pyright with reviewdog"
description: "🐶 Run pyright on pull requests and get reviews with reviewdog."
author: "Jordan Webb (@jordemort)"
inputs:
github_token:
description: "GITHUB_TOKEN."
required: true
default: ${{ github.token }}
level:
description: "Report level for reviewdog [info,warning,error]"
required: false
default: "error"
reporter:
description: |
Reporter of reviewdog command [github-check,github-pr-review].
Default is github-pr-review.
github-pr-review can use Markdown and add a link to rule page in reviewdog reports.
required: false
default: "github-pr-review"
filter_mode:
description: |
Filtering mode for the reviewdog command [added,diff_context,file,nofilter].
Default is added.
required: false
default: "added"
fail_on_error:
description: |
Exit code for reviewdog when errors are found [true,false]
Default is `false`.
required: false
default: "false"
reviewdog_flags:
description: "Additional reviewdog flags"
required: false
default: ""
workdir:
description: "The directory from which to run pyright. Default '.'"
required: false
default: "."
tool_name:
description: "Tool name to use for reviewdog reporter"
required: false
default: "pyright"
pyright_version:
description: "Version of pyright to run. If not specified, the latest version will be used."
required: false
python_platform:
description: "Analyze for a specific platform (Darwin, Linux, Windows)."
required: false
python_version:
description: "Analyze for a specific version (3.3, 3.4, etc.)."
required: false
typeshed_path:
description: "Use typeshed type stubs at this location."
required: false
venv_path:
description: "Directory that contains virtual environments."
required: false
project:
description: "Use the configuration file at this location."
required: false
lib:
description: "Use library code to infer types when stubs are missing."
required: false
default: "false"
pyright_flags:
description: "Extra arguments; can be used to specify specific files to check."
required: false
runs:
using: "composite"
steps:
- run: $GITHUB_ACTION_PATH/script.sh
shell: bash
env:
REVIEWDOG_VERSION: v0.13.0
# INPUT_<VARIABLE_NAME> is not available in Composite run steps
# https://github.community/t/input-variable-name-is-not-available-in-composite-run-steps/127611
INPUT_GITHUB_TOKEN: ${{ inputs.github_token }}
INPUT_LEVEL: ${{ inputs.level }}
INPUT_REPORTER: ${{ inputs.reporter }}
INPUT_FILTER_MODE: ${{ inputs.filter_mode }}
INPUT_FAIL_ON_ERROR: ${{ inputs.fail_on_error }}
INPUT_REVIEWDOG_FLAGS: ${{ inputs.reviewdog_flags }}
INPUT_ESLINT_FLAGS: ${{ inputs.eslint_flags }}
INPUT_WORKDIR: ${{ inputs.workdir }}
INPUT_TOOL_NAME: ${{ inputs.tool_name }}
INPUT_PYRIGHT_VERSION: ${{ inputs.pyright_version }}
INPUT_PYTHON_PLATFORM: ${{ inputs.python_platform }}
INPUT_PYTHON_VERSION: ${{ inputs.python_version }}
INPUT_TYPESHED_PATH: ${{ inputs.typeshed_path }}
INPUT_VENV_PATH: ${{ inputs.venv_path }}
INPUT_PROJECT: ${{ inputs.project }}
INPUT_LIB: ${{ inputs.lib }}
INPUT_PYRIGHT_FLAGS: ${{ inputs.pyright_flags }}
branding:
icon: "alert-octagon"
color: "blue"