Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
merge: Merge pull request #201 from srevinsaju/sndcpy
Browse files Browse the repository at this point in the history
Add sndcpy support
  • Loading branch information
srevinsaju authored Dec 30, 2020
2 parents c81cefd + 4646659 commit fe8c006
Show file tree
Hide file tree
Showing 38 changed files with 1,122 additions and 975 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,21 @@ jobs:
quality:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
- uses: actions/checkout@v2
- name: Set up Python 3.x
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pip wheel
pip install -r requirements.txt
pip3 install black
- name: Lint with flake8
run: |
black --check guiscrcpy --exclude guiscrcpy/ui
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 --per-file-ignores='setup.py:E501'
- name: Test setup.py
run: |
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ guiscrcpy.AppDir.BUILD/
guiscrcpy.AppDir/
scrcpy-squashfs-root/
squashfs-root/
/deb_dist/
1 change: 1 addition & 0 deletions guiscrcpy/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@
"""

from guiscrcpy.cli import cli

cli()
Loading

0 comments on commit fe8c006

Please sign in to comment.