Skip to content

Bump actions/setup-python from 6 to 7 #4

Bump actions/setup-python from 6 to 7

Bump actions/setup-python from 6 to 7 #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: Check out
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: python -m pip install -e .
- name: Run unit tests
run: python -m unittest discover -s tests
- name: Run CLI smoke test
run: python -m iocraft extract examples/report.txt --format markdown --defang-output