Skip to content

feat: add cross-platform smoke CI + bump version to 1.1.3 #1

feat: add cross-platform smoke CI + bump version to 1.1.3

feat: add cross-platform smoke CI + bump version to 1.1.3 #1

name: Source Platform Smoke
on:
push:
pull_request:
jobs:
smoke:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: python -m pip install -e ".[dev]"
- name: Smoke tests
run: pytest tests/source_platform_smoke.py -v