Skip to content

Expand cloud scanner to 52 Terraform + 25 CloudFormation resource types #7

Expand cloud scanner to 52 Terraform + 25 CloudFormation resource types

Expand cloud scanner to 52 Terraform + 25 CloudFormation resource types #7

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:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Lint with ruff
run: ruff check src/ tests/
- name: Run tests
run: pytest -v --cov=ai_bom --cov-report=term-missing