Skip to content

Bump fastapi from 0.95.2 to 0.109.1 in /examples/getting-started-anylogic-sim/docker #193

Bump fastapi from 0.95.2 to 0.109.1 in /examples/getting-started-anylogic-sim/docker

Bump fastapi from 0.95.2 to 0.109.1 in /examples/getting-started-anylogic-sim/docker #193

Workflow file for this run

name: Pytest
on: [pull_request, workflow_dispatch]
jobs:
build:
runs-on: ${{ matrix.system-version }}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
system-version: ["ubuntu-latest", "macos-latest", "windows-latest"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install -r requirements/dev_requirements.txt
- name: Running tests
run: |
pytest