We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b77a50 commit 8262244Copy full SHA for 8262244
.github/workflows/test.yml
@@ -57,7 +57,7 @@ jobs:
57
version: 1.1.363
58
python-version: '3.8'
59
- name: Install tools
60
- run: sudo apt-get install ripgrep
+ run: sudo apt-get update && yes | sudo apt-get install ripgrep bsdmainutils
61
- name: Check indentation
62
id: indent
63
run: ./check_indent.sh
check_indent.sh
@@ -1,3 +1,7 @@
1
#!/bin/bash
2
+pwd
3
+which rg
4
+rg trun
5
rg -tpy '^\t* +'; echo $?;
6
hexdump -C test.py
7
+exit 123
0 commit comments