-
Notifications
You must be signed in to change notification settings - Fork 32
54 lines (43 loc) · 1.24 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]
jobs:
pre-commit:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.10", "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.8", "3.10", "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.8", "3.10", "3.12"]
streamlit-version: ["1.25", "1.30", "1.31", "1.36"]
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: python -m pytest tests/playwright.py --verbose