-
Notifications
You must be signed in to change notification settings - Fork 36
39 lines (39 loc) · 1.08 KB
/
test.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
name: test-wf
on: pull_request
jobs:
test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v1
- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install chromium-browser
- name: Install kaleido
run: ls && pip install src/py/.[dev]
- name: test
run: pytest
timeout-minutes: 1
test-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install Dependencies
run: choco install googlechrome -y --ignore-checksums
- name: Install kaleido
run: pip install src/py/.[dev]
- name: test
run: pytest
timeout-minutes: 1
test-mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install Dependencies
run: brew install google-chrome
- name: Install kaleido
run: pip install src/py/.[dev]
- name: test
run: pytest
timeout-minutes: 1