Skip to content

Commit

Permalink
Merge pull request kivy#1068 from AndreMiras/feature/dedicated_docker…
Browse files Browse the repository at this point in the history
…_job

Dedicated Docker build/run job
  • Loading branch information
AndreMiras authored Apr 13, 2020
2 parents d3361bb + ee34d7e commit 35cce59
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/test_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,17 @@ jobs:
pip install -U coveralls setuptools tox>=2.0
- name: Tox
run: tox
- name: Docker build
run: |
docker build --tag=buildozer .
- name: Docker run
run: |
docker run buildozer --version
- name: Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_SERVICE_NAME: github
run: coveralls

Docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Docker build
run: docker build --tag=kivy/buildozer .
- name: Docker run
run: docker run kivy/buildozer --version

0 comments on commit 35cce59

Please sign in to comment.