-
Notifications
You must be signed in to change notification settings - Fork 33
61 lines (48 loc) · 1.45 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
55
56
57
58
59
60
61
name: CI
on: [push]
jobs:
pre-commit:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.11", "3.12"]
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.9", "3.11", "3.12"]
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
strategy:
matrix:
python-version: ["3.9", "3.12"]
streamlit-version: ["1.25", "1.36", "latest"]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup_frontend
- uses: ./.github/actions/setup_backend
with:
python-version: ${{ matrix.python-version }}
streamlit-version: ${{ matrix.streamlit-version }}
- run: playwright install
- run: python -m pytest tests/
# run playwright tests & save screenshots
- run: python -m pytest tests/playwright.py --verbose
- uses: actions/upload-artifact@v4
with:
name: screenshots-${{ matrix.python-version }}-${{ matrix.streamlit-version }}
path: tests/screenshots/