Skip to content

Commit

Permalink
Integration testing
Browse files Browse the repository at this point in the history
Checks:
- buildozer installs
- buildozer --help
- buildozer init

Currently `buildozer android debug` is not ran as it's not yet fully reliable.
  • Loading branch information
AndreMiras committed May 2, 2020
1 parent 1f8c88f commit 041cdfa
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/test_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v2

- name: Setup python
uses: actions/setup-python@v1
Expand All @@ -38,8 +38,23 @@ jobs:
Docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v2
- name: Docker build
run: docker build --tag=kivy/buildozer .
- name: Docker run
run: docker run kivy/buildozer --version

Integration:
runs-on: ubuntu-latest
steps:
- name: Setup python
uses: actions/setup-python@v1
with:
python-version: 3.8
- uses: actions/checkout@v2
- name: Setup environment
run: |
pip install -e .
pip install Cython==0.28.6
- run: buildozer --help
- run: buildozer init

0 comments on commit 041cdfa

Please sign in to comment.