Devtools/main #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |