AutomationEditor Stable Python3.10 #321
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: AutomationEditor Stable Python3.10 | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
schedule: | |
- cron: "0 2 * * *" | |
permissions: | |
contents: read | |
jobs: | |
build_dev_version: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Update pip wheel setuptools | |
run: python -m pip install --upgrade --user pip setuptools wheel | |
- name: Run pip requirements.txt | |
run: python -m pip install --user -r requirements.txt | |
- name: Run AutomationEditor With Debug Mode | |
run: python ./test/unit_test/start_automation/start_automation_test.py | |
- name: Extend AutomationEditor | |
run: python ./test/unit_test/start_automation/extend_automation_test.py | |