Add webhook optional dependency group #9
This file contains hidden or 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
| # This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
| # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
| name: Development Continuous Integration | |
| permissions: | |
| contents: write | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| dev: | |
| name: Format, lint & test project | |
| if: github.actor != 'github-actions[bot]' | |
| runs-on: ubuntu-latest | |
| env: | |
| PAYSTACK_SECRET_KEY: ${{ secrets.PAYSTACK_SECRET_KEY }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| fetch-depth: 0 | |
| - name: Install the latest version of uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Install dependencies with uv | |
| run: uv sync --all-groups | |
| - name: Format with ruff | |
| run: uv run ruff format . | |
| - name: Lint with ruff | |
| run: uv run ruff check . --fix | |
| - name: Test package | |
| run: | | |
| uv run python -m unittest discover tests/unit | |
| - name: Commit changes | |
| run: | | |
| git config --global user.name "github-actions[bot]" | |
| git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
| git add -A | |
| git commit -m "Apply auto-formatting" || echo "No changes to commit" | |
| - name: Push changes | |
| run: | | |
| git push |