ci: tidy-ups

- http3-linux: add newlines for readability.
- http3-linux: use `make pytest` to run pytest.
- checksrc: use `|` multiline to sync with other uses.
- checksrc: prefer `$()`.
- prefer `>-` over `>` for folded option lists.
- cygwin: drop a `grep` no longer necessary.

Closes #15081
This commit is contained in:
Viktor Szakats 2024-09-28 12:23:48 +02:00
parent 8a8719d2e1
commit 2c419fc14b
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
5 changed files with 21 additions and 17 deletions

View file

@ -93,6 +93,6 @@ jobs:
# we allow some extra in source code
- name: badwords
run: >
grep -Ev '(\\bwill| url | dir )' .github/scripts/badwords.txt |
.github/scripts/badwords.pl `git ls-files -- src lib include`
run: |
grep -Ev '(\\bwill| url | dir )' .github/scripts/badwords.txt | \
.github/scripts/badwords.pl $(git ls-files -- src lib include)