Update lint error test to be inclusive of newer output format. #3504
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@v4 | |
with: | |
python-version: "3.8" | |
- uses: actions/checkout@v4 | |
- 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 |