Skip to content

do not do remote updates of submodules #216

do not do remote updates of submodules

do not do remote updates of submodules #216

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Dependencies
run: |
.\dependencies.bat
- name: Install PyInstaller
run: |
.\install_pyinstaller.bat
- name: Build
run: |
.\build.bat
- uses: actions/upload-artifact@v3
with:
name: PBSync.windows
path: dist/PBSync.exe