chore: switch to bootstrap for windows #214
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# poetry and pytest execution inspired by | |
# https://github.com/okeeffed/hello-pytest-github-actions/ | |
name: Windows | |
on: | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [develop] | |
workflow_dispatch: | |
jobs: | |
build-and-test: | |
runs-on: windows-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: install tools, run selftests and create package (w/o deploying) | |
run: .\build.ps1 -install | |
shell: powershell |