-
Notifications
You must be signed in to change notification settings - Fork 7
51 lines (43 loc) · 1.3 KB
/
lint.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
name: Lint
on:
push:
branches:
- develop
pull_request:
jobs:
pyright:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
fail-fast: false
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install pipenv
run: python3 -m pip install --upgrade pipenv wheel --break-system-packages
- name: Install Deps from Pipfile
run: pipenv install --dev
- name: Add Virtualenv to Path for Pyright to use
run: echo "$(pipenv --venv)/bin" >> $GITHUB_PATH
- name: Run pyright (Linux)
uses: jakebailey/[email protected]
with:
python-version: ${{ matrix.python-version }}
python-platform: Linux
no-comments: true
warnings: true
- name: Run pyright (Windows)
uses: jakebailey/[email protected]
# run anyway
if: success() || failure()
with:
version: ${{ env.PYRIGHT_VERSION }}
python-version: ${{ matrix.python-version }}
python-platform: Windows
no-comments: true
warnings: true