Skip to content

Improve type annotations, remove flake8 exceptions #4

Improve type annotations, remove flake8 exceptions

Improve type annotations, remove flake8 exceptions #4

Workflow file for this run

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
- name: Run type checker
run: mypy pytest_tiny_api_client.py
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/*