Catch more error types in the insights proxy. #2340
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: TDD | |
on: | |
pull_request: | |
branches: | |
- '*' | |
workflow_dispatch: | |
jobs: | |
validation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.8" | |
- uses: actions/checkout@v3 | |
- name: Ensure changes were made to tests | |
env: | |
PY_COLORS: '1' | |
GITHUB_PR_NUMBER: ${{github.event.number}} | |
GITHUB_BASE_REF: ${{ github.base_ref }} | |
GITHUB_BRANCH: ${{ github.head_ref }} | |
GITHUB_USER: ${{ github.event.pull_request.user.login }} | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
run: python dev/common/tdd.py |