Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rbx committed Oct 11, 2024
1 parent 1fda1b1 commit 5fdaae2
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,31 +15,31 @@ jobs:
python-version: ['3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Test app startup
run: |
python -c "import main; print('Main module imported successfully')"
python -m main --help
env:
GITHUB_APP_ID: dummy_id
GITHUB_PRIVATE_KEY: dummy_key
GITHUB_APP_WEBHOOK_SECRET: dummy_secret
- name: Test app startup
run: |
python -c "from src import main; print('Main module imported successfully')"
python -m src.main --help
env:
GITHUB_APP_ID: dummy_id
GITHUB_PRIVATE_KEY: dummy_key
GITHUB_APP_WEBHOOK_SECRET: dummy_secret

- name: Test server startup
run: |
timeout 5s python -m main --server || code=$?; if [[ $code -ne 124 && $code -ne 0 ]]; then exit $code; fi
env:
GITHUB_APP_ID: dummy_id
GITHUB_PRIVATE_KEY: dummy_key
GITHUB_APP_WEBHOOK_SECRET: dummy_secret
- name: Test server startup
run: |
timeout 5s python -m src.main --server || code=$?; if [[ $code -ne 124 && $code -ne 0 ]]; then exit $code; fi
env:
GITHUB_APP_ID: dummy_id
GITHUB_PRIVATE_KEY: dummy_key
GITHUB_APP_WEBHOOK_SECRET: dummy_secret
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ repository = "https://github.com/rbx/pearbot"

[tool.setuptools.packages.find]
where = ["src"]

[tool.setuptools.package-data]
"*" = ["*.py"]

0 comments on commit 5fdaae2

Please sign in to comment.