Skip to content

update to scrcpy v2.4 (debugging) #160

update to scrcpy v2.4 (debugging)

update to scrcpy v2.4 (debugging) #160

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
name: "Test on python ${{ matrix.python-version }}, ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
strategy:
matrix:
# Should match the python versions in pyproject.toml and publish.yml
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [windows-latest, ubuntu-latest, macos-latest]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip poetry
poetry config virtualenvs.create false --local
poetry install
- name: Static type and format checking
run: python scripts/check.py
- name: Test and generate coverage report
run: |
pytest --cov=scrcpy --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
files: ./coverage.xml
directory: ./coverage/reports/
flags: unittests
env_vars: OS,PYTHON
fail_ci_if_error: false
verbose: true