Skip to content

add verifications for test #1

add verifications for test

add verifications for test #1

name: Run Python verifications
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 6 * * 1'
jobs:
run-examples:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install uxsim and dependencies
run: pip install .
- name: Install pytest other dependencies
run: pip install pytest
- name: Run verifications with pytest
run: pytest tests/test_verification_straight_road.py --durations=0