Refactor FileStackNode::printBacktrace from recursive to iterative
#2440
Workflow file for this run
This file contains hidden or 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: Diff completeness check | |
| on: pull_request | |
| jobs: | |
| checkdiff: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up repo | |
| run: | | |
| git clone -b "${{ github.event.pull_request.head.ref }}" "${{ github.event.pull_request.head.repo.clone_url }}" rgbds | |
| cd rgbds | |
| git remote add upstream "${{ github.event.pull_request.base.repo.clone_url }}" | |
| git fetch upstream | |
| - name: Check diff | |
| working-directory: rgbds | |
| run: | | |
| make checkdiff "BASE_REF=${{ github.event.pull_request.base.sha }}" Q= | tee log |