Update changelog #23
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 tiny_api_client | |
- name: Run type checker | |
run: mypy --strict tiny_api_client | |
- 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/* |