name: Build Windows on: [push] jobs: build: runs-on: windows-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: python-version: 3.7 - name: Install dependencies run: | python -m pip install --upgrade pip pip install PyQt5 pip install py2exe - name: Run Windows build run: | cd ${{ github.workspace }} ./build_win.sh - name: Show build results run: | ls ${{ github.workspace }}/build/win ls ${{ github.workspace }}/build/dist