From de12d4166617040a6d746156f46cd885ebdc3137 Mon Sep 17 00:00:00 2001 From: Milan Kolar Date: Mon, 5 Apr 2021 22:14:30 +0200 Subject: [PATCH] Create test_build.yml --- .github/workflows/test_build.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/test_build.yml diff --git a/.github/workflows/test_build.yml b/.github/workflows/test_build.yml new file mode 100644 index 0000000000..9f43378d63 --- /dev/null +++ b/.github/workflows/test_build.yml @@ -0,0 +1,29 @@ +# This workflow will upload a Python Package using Twine when a release is created +# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries + +name: Build Python Package + +on: + pull_request: + branches: [develop] + +jobs: + build: + + runs-on: windows-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: '3.7' + - name: Install Venv + shell: pwsh + run: | + ./tools/create_env.ps1 + + - name: Build + shell: pwsh + run: | + ./tools/build.ps1