Add .NET6.0 support, add WPF with embedded window example, update docs #28
Workflow file for this run
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
name: RoboDK-API | |
on: | |
pull_request: | |
push: | |
workflow_dispatch: # Run workflow manually | |
branches: [master] | |
paths: | |
- "Python/**" | |
- "!Python/Examples/**" | |
- "!Python/setup.py" | |
- "**.py" | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [windows-latest] | |
python-version: ["3.7"] | |
steps: | |
- name: Setup Python (x64) | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: Display Python version (x64) | |
run: python -c "import sys; print(sys.version)" | |
- uses: actions/checkout@v2 | |
- name: Tests the Python API | |
run: | | |
cd ${{ github.workspace }} | |
python _Compile_Posts.py |