applications.yml 797 B

1234567891011121314151617181920212223242526272829303132333435
  1. name: PyPI
  2. on:
  3. push:
  4. paths:
  5. - '.github/workflows/applications.yml'
  6. - 'applications/**'
  7. - 'python_appimage/**'
  8. jobs:
  9. Test:
  10. runs-on: ubuntu-latest
  11. strategy:
  12. matrix:
  13. version: ['2.7', '3.5']
  14. steps:
  15. - uses: actions/checkout@v2
  16. - uses: actions/setup-python@v1
  17. with:
  18. python-version: ${{ matrix.version }}
  19. - name: Test scipy
  20. run: |
  21. python -m python_appimage build app applications/scipy
  22. test -e scipy-x86_64.AppImage
  23. - name: Test tasmotizer
  24. run: |
  25. python -m python_appimage build app applications/tasmotizer
  26. test -e tasmotizer-x86_64.AppImage
  27. - name: Test xonsh
  28. run: |
  29. python -m python_appimage build app applications/xonsh
  30. test -e xonsh-x86_64.AppImage