Pass response body in exceptions raised #62
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
name: Test and Deploy | |
on: | |
push: | |
pull_request: | |
branches: [ "master" ] | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11", "3.12"] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up Python environment | |
run: | | |
python -m pip install --upgrade pip | |
pip install pipenv | |
pipenv requirements --dev > requirements.txt | |
pip install -r requirements.txt | |
- name: Run linter | |
run: flake8 blackboard | |
- name: Run type checker | |
run: mypy --strict blackboard | |
- name: Run test suite | |
run: pytest -vvvv | |
pypi: | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags/') | |
needs: [ test ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Set up Python environment | |
run: | | |
python -m pip install --upgrade pip | |
pip install pipenv | |
pipenv requirements --dev > requirements.txt | |
pip install -r requirements.txt | |
- name: Build and upload to PyPI | |
env: | |
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
run: | | |
python -m build | |
twine upload dist/* |