Update pr_checks.yml: fix a grammar error (#22586)

This commit is contained in:
Changming Sun 2024-10-24 15:56:17 -07:00 committed by GitHub
parent b9903617b6
commit 3e62fffd3d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -34,12 +34,16 @@ jobs:
with:
toolchain: stable
components: rustfmt
- name: Update PATH
run: |
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- name: Install dependencies and run lintrunner on all files
run: |
export PATH=$HOME/.local/bin:$PATH
set -e
set -e
python -m pip install --user -r requirements-dev.txt
python -m pip install --user lintrunner lintrunner-adapters
python -m pip install --user lintrunner lintrunner-adapters
lintrunner init
lintrunner f --all-files -v
exit 0