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

fix: remove redundant folder and bring up one level up #22

fix: remove redundant folder and bring up one level up

fix: remove redundant folder and bring up one level up #22

Workflow file for this run

---
name: Tests
on:
push:
branches: [main, develop]
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_github/tests/ -v
- name: Run tests with coverage
run: |
pytest cpk_lib_python_github/tests/ \
--cov=cpk_lib_python_github.github_app_token_generator \
--cov-report=term-missing
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: |
github-app-token-generator --help