Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: Unit Tests (Windows)
on:
push:
branches: ["main", "dev"]
pull_request:
branches: [ "main", "dev"]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build_windows:
runs-on: windows-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
rm poetry.lock
python -m pip install poetry
- name: Test with pytest
shell: bash
run: |
export SIMVUE_URL=${{ secrets.SIMVUE_URL }}
export SIMVUE_TOKEN=${{ secrets.SIMVUE_TOKEN }}
poetry install --all-extras
poetry run pytest tests/unit/