NXPY-253: Restore capability to use the client with a local HTTP server (Sourcery refactored) #454
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: Type annotations | |
on: | |
pull_request: | |
paths: | |
- "**/*.py" | |
jobs: | |
types: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: python -m pip install -U pip tox | |
- name: Type annotations check | |
run: tox -e types |