Merge pull request #4535 from mwichmann/doc/Command #7
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
# This is a basic workflow to help you get started with Actions | |
name: Full Test Suite on Windows | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
runtest-win32: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python 3.12 | |
uses: actions/[email protected] | |
with: | |
python-version: '3.12' | |
- name: Install dependencies including ninja | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r requirements-dev.txt | |
- name: runtest | |
run: | | |
python runtest.py --all --exclude-list=windows_ci_skip.txt --time --jobs=4 | |
- name: Archive Failed tests | |
uses: actions/[email protected] | |
with: | |
name: windows-failed-tests | |
path: | | |
failed_tests.log |