Bump tornado from 6.4.1 to 6.4.2 #373
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: Lint | |
on: | |
push: | |
pull_request: | |
jobs: | |
black: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: psf/black@stable | |
with: | |
version: '~=23.12' | |
mypy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' # Replace '3.x' with your desired Python version | |
- name: Install poetry | |
run: pip install poetry # You may need additional dependencies here | |
- name: Install flarestack | |
run: poetry install | |
- name: Run mypy | |
run: poetry run mypy # Replace 'your_code_directory' with your actual code directory |