-
Notifications
You must be signed in to change notification settings - Fork 2
54 lines (48 loc) · 1.16 KB
/
ci.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
name: CI
on:
push:
branches:
- 'master'
pull_request:
merge_group:
jobs:
pre-commit:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12" ]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: pre-commit/action@v3.0.1
with:
extra_args: --all-files
pyright:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.11" ]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
cache: 'pip'
python-version: "3.11"
- run: poetry install
- run: pip install -r requirements.txt
- uses: jakebailey/pyright-action@v2
with:
pylance-version: latest-release
check: # This job does nothing and is only used for the branch protection
if: always()
needs:
- pre-commit
- pyright
runs-on: ubuntu-latest
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@v1.2.2
with:
jobs: ${{ toJSON(needs) }}