stakes: bounding number of stake accounts possible on chain [wip, don't review] #25853
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: Trailing Whitespace | |
| on: | |
| pull_request: | |
| jobs: | |
| check: | |
| name: trailing-whitespace | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Get changed files | |
| id: changes | |
| run: | | |
| echo "all=$(git diff --name-only --diff-filter=ACMRT ${{ github.event.pull_request.base.sha }} ${{ github.sha }} -- . ':!src/disco/gui/dist*' | xargs)" >> $GITHUB_OUTPUT | |
| - uses: actions/setup-python@v6 | |
| - uses: pre-commit/action@v3.0.1 | |
| with: | |
| extra_args: "--files ${{ steps.changes.outputs.all }}" |