Skip to content

90: Update to latest python template. #135

90: Update to latest python template.

90: Update to latest python template. #135

Workflow file for this run

name: Build-Test-Lint (win32)
on:
pull_request:
types: [ opened, reopened, synchronize ]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.9", "3.11"]
# python-version: [3.9, 3.10, 3.11, 3.12]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- run: |
.\ci\win32\create_venv.cmd
.\ci\win32\install_dependencies.cmd
- name: run unit tests
run: |
.\ci\win32\test_unit.cmd
- name: Lint
run: |
.\ci\win32\lint.cmd