From: kpcyrd Date: Sun, 20 Jun 2021 18:43:36 +0000 (+0000) Subject: Create github actions to test ./setup.py install X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=08fdb3ef440370afede670cb94f37185b34adca0;p=torbrowser-launcher.git Create github actions to test ./setup.py install --- 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