Skip to content

94 enable time series database cleanup #7

94 enable time series database cleanup

94 enable time series database cleanup #7

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.10", "3.11", "3.12", "3.13" ]
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 lint
run: |
.\ci\win32\lint.cmd
- name: Run unit tests
run: |
.\ci\win32\test_unit.cmd
- name: Run typecheck
run: |
.\ci\win32\typecheck.cmd