Skip to content

docs(release): add production install commands #5

docs(release): add production install commands

docs(release): add production install commands #5

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Compile CLI
run: python -m py_compile scripts/find_codex_conversations.py
- name: Run tests
run: python -m unittest discover -s tests
- name: Check help output
run: python scripts/find_codex_conversations.py --help