Bump tornado from 6.4.1 to 6.4.2 #1344
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: Check whitespace | |
on: [push, pull_request] | |
jobs: | |
end-of-line: | |
name: End-of-line blanks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v4 | |
- name: Scan for lines with trailing whitespace | |
run: | | |
! git ls-files -z | xargs -0 grep -IHn --color '\s$' -- | |
end-of-file: | |
name: End-of-file newlines | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v4 | |
- name: Scan for wrong number of trailing newlines | |
uses: fernandrone/linelint@0.0.6 |