Skip to content

Install adb-enhanced via pip #170

Install adb-enhanced via pip

Install adb-enhanced via pip #170

name: Install adb-enhanced via pip
on:
schedule:
- cron: "0 0 * * 0" # Sunday midnight UTC
workflow_dispatch:
push:
branches: [master, main]
paths:
- ".github/workflows/install-adb-enhanced-from-pip.yml"
pull_request:
branches: [master, main]
paths:
- ".github/workflows/install-adb-enhanced-from-pip.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
installViaPip:
runs-on: macos-latest
timeout-minutes: 15
strategy:
max-parallel: 1
matrix:
python-version: ["3.12", "3.13"]
steps:
- name: checkout
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install adb-enhanced from pip
run: |
sudo pip install adb-enhanced
adbe --version
sudo pip uninstall -y adb-enhanced