Skip to content

Inital workflow

Inital workflow #1

Workflow file for this run

name: Test Package
on: [push, pull_request]
permissions:
contents: read
jobs:
get_version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[docs]
- name: Build Docs
run: |
python -c "import iotdevicesimulator; print(iotdevicesimulator.__version__)"