type fixes and other numerous fixes #9
Workflow file for this run
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 and Static Analysis | |
on: | |
pull_request: | |
paths: | |
- main.py | |
- context_chat_backend/** | |
push: | |
branches: | |
- master | |
paths: | |
- main.py | |
- context_chat_backend/** | |
jobs: | |
analysis: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: .. | |
name: Lint and Static Analysis | |
steps: | |
- name: print pwd | |
run: | | |
pwd | |
ls -la | |
# - name: Setup python 3.11 | |
# uses: actions/setup-python@v5 | |
# with: | |
# python-version: '3.11' | |
# - name: Install dev dependencies | |
# run: | | |
# pip install -r reqs.dev | |
# - name: Lint with Ruff | |
# run: | | |
# ruff --output-format=github context_chat_backend main.py | |
# - name: Static analysis with pyright | |
# run: | | |
# pyright context_chat_backend main.py |