Merge pull request #1083 from AndreMiras/feature/integration_test
Integration testing
This commit is contained in:
commit
d0323c165d
1 changed files with 18 additions and 3 deletions
21
.github/workflows/test_python.yml
vendored
21
.github/workflows/test_python.yml
vendored
|
@ -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 }}
|
||||
|
||||
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue