Skip to content

Fix coverage and tests workflows #5

Fix coverage and tests workflows

Fix coverage and tests workflows #5

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 }}