Skip to content

Commit

Permalink
Merge pull request #1083 from AndreMiras/feature/integration_test
Browse files Browse the repository at this point in the history
Integration testing
  • Loading branch information
AndreMiras authored May 2, 2020
2 parents 1f8c88f + d74aef3 commit d0323c1
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/test_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:

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

- name: Setup python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}

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@v2
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 d0323c1

Please sign in to comment.