Improve PING_ENDPOINT docs #1
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: Mypy | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
main: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update -qq | |
sudo apt-get install -y libcurl4-openssl-dev libpython3-dev libssl-dev | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install apprise braintree minio | |
pip install mypy django-stubs types-braintree types-pycurl types-Markdown | |
touch hc/local_settings.py | |
- name: Run Mypy | |
run: mypy hc |