From 08fdb3ef440370afede670cb94f37185b34adca0 Mon Sep 17 00:00:00 2001 From: kpcyrd Date: Sun, 20 Jun 2021 18:43:36 +0000 Subject: [PATCH] Create github actions to test ./setup.py install --- .github/workflows/python.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/python.yml diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml new file mode 100644 index 0000000..3e5bb30 --- /dev/null +++ b/.github/workflows/python.yml @@ -0,0 +1,19 @@ +name: Python + +on: + push: + branches: [ develop ] + pull_request: + branches: [ develop ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Install dependencies + run: sudo apt-get install gettext python3 python3-packaging python3-gpg python3-pyqt5 python3-requests python3-socks + - name: Build torbrowser-launcher + run: python3 setup.py build + - name: Install torbrowser-launcher + run: sudo python3 setup.py install -- 2.44.0