Skip to content

chore: bump version to 1.4.0 #19

chore: bump version to 1.4.0

chore: bump version to 1.4.0 #19

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.11', '3.12', '3.13']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Test import
run: python -c "from prosaic.__main__ import ProsaicApp; print('OK')"
- name: Test CLI entrypoint
run: prosaic --help