Skip to content

Add linter checks and fix errors #1

Add linter checks and fix errors

Add linter checks and fix errors #1

Workflow file for this run

name: pyright
on: [push, workflow_dispatch]
jobs:
pyright:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare test environment
uses: ./.github/actions/prepare-test-environment
- name: pyright
run: python -m pyright *.py fastapi_lambda main_scrape_lambda news_scrape_lambda query_lambda
- name: Save result
if: always()
uses: ./.github/actions/save-workflow-result
with:
result: ${{ job.status }}