Skip to content

Prepare for the first release (#30) #10

Prepare for the first release (#30)

Prepare for the first release (#30) #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pre-commit/action@v3.0.1
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
- run: uv python install ${{ matrix.python-version }}
- run: uv sync --group test --python ${{ matrix.python-version }}
- run: uv pip install -e .
- run: uv run pytest tests/ --ignore=tests/real_plc_s1200/