Skip to content

Drop macOS x86_64 build (runner retired by GitHub) #3

Drop macOS x86_64 build (runner retired by GitHub)

Drop macOS x86_64 build (runner retired by GitHub) #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.12", "3.13"]
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 package
run: pip install .
- name: Verify import
run: python -c "import hcli; print(hcli.__version__)"
- name: Verify CLI entry point
run: hcli --help
- name: Compile check
run: python -m py_compile src/hcli/_app.py