-
Notifications
You must be signed in to change notification settings - Fork 32
46 lines (36 loc) · 1 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
name: CI
on: [push]
jobs:
pre-commit:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup_backend
with:
python-version: ${{ matrix.python-version }}
- run: pre-commit run --all-files
types:
needs: [pre-commit]
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup_backend
with:
python-version: ${{ matrix.python-version }}
- run: pyright .
tests:
needs: [pre-commit, types]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup_frontend
- uses: ./.github/actions/setup_backend
- run: playwright install
- run: python -m pytest tests/
- run: python -m pytest tests/playwright.py --verbose