Skip to content
This repository was archived by the owner on Oct 9, 2025. It is now read-only.

feat/aws-access-auditor #8

feat/aws-access-auditor

feat/aws-access-auditor #8

Workflow file for this run

---
name: Tests
on:
push:
branches: [main, develop, feat/aws-auditor]
pull_request:
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[test]"
- name: Run tests
run: |
pytest cpk_lib_python_aws/tests/ -v
test-installation:
name: Test Package Installation
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install package
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Test CLI command
run: |
aws-access-auditor --help