Skip to content

remove redundant build-essential dep installation in computer-use d… #117

remove redundant build-essential dep installation in computer-use d…

remove redundant build-essential dep installation in computer-use d… #117

Workflow file for this run

name: tests
on:
pull_request:
paths:
- .github/**
- computer-use-demo/**
push:
branches:
- main
paths:
- .github/**
- computer-use-demo/**
jobs:
ruff:
runs-on: ubuntu-latest
defaults:
run:
working-directory: computer-use-demo
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v1
pyright:
runs-on: ubuntu-latest
defaults:
run:
working-directory: computer-use-demo
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
cache: "pip"
python-version: "3.11.6"
- run: |
python -m venv .venv
source .venv/bin/activate
pip install -r dev-requirements.txt
- run: echo "$PWD/.venv/bin" >> $GITHUB_PATH
- uses: jakebailey/pyright-action@v1
pytest:
runs-on: ubuntu-latest
defaults:
run:
working-directory: computer-use-demo
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
cache: "pip"
python-version: "3.11.6"
- run: |
python -m venv .venv
source .venv/bin/activate
pip install -r dev-requirements.txt
- run: echo "$PWD/.venv/bin" >> $GITHUB_PATH
- run: pytest tests --junitxml=junit/test-results.xml