Andrew/precommit #232
Workflow file for this run
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-all: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version-file: "pyproject.toml" | |
- name: Install Dependencies | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: sudo apt-get update && sudo apt-get install xvfb | |
timeout-minutes: 1 | |
- name: Install choreographer | |
run: uv sync --all-extras | |
- name: Install google-chrome-for-testing | |
run: uv run choreo_get_browser | |
- name: Diagnose | |
run: uv run choreo_diagnose --no-run | |
timeout-minutes: 1 | |
- name: Test | |
if: ${{ ! runner.debug && matrix.os != 'ubuntu-latest' }} | |
run: uv run poe test | |
timeout-minutes: 7 | |
- name: Test (Linux) | |
if: ${{ ! runner.debug && matrix.os == 'ubuntu-latest' }} | |
run: xvfb-run uv run poe test | |
timeout-minutes: 7 | |
- name: Test (Debug) | |
if: runner.debug | |
run: uv run poe debug-test |