Remove the check for main in setup.py, we use aicodebot/__init__.py t… #276
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# Build and test the code | |
name: Build | |
on: [push, pull_request] | |
jobs: | |
pre-commit: | |
name: Pre-commit (linting) | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Run pre-commit | |
uses: pre-commit/action@v3.0.0 | |
pytest-in-venv: | |
name: Python tests | |
runs-on: ubuntu-latest | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
cache: pip | |
- name: Install dependencies | |
run: pip install -r requirements/requirements-test.txt | |
- name: Run configure to create the config file | |
run: python -m aicodebot.cli configure | |
- name: Run the tests with coverage | |
run: pytest --cov=./ --cov-report=xml | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 |