File tree 5 files changed +29
-1
lines changed
5 files changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -12,3 +12,9 @@ charset = utf-8
12
12
13
13
[* .sh ]
14
14
indent_size = 2
15
+
16
+ [* .{yaml,yml} ]
17
+ indent_size = 2
18
+
19
+ [Makefile ]
20
+ indent_style = tab
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : ' Run Tests'
3
+
4
+ on :
5
+ pull_request :
6
+ push :
7
+ branches : [main]
8
+
9
+ jobs :
10
+ pre-commit :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - name : Check out code
14
+ uses : actions/checkout@v3
15
+
16
+ - name : ' Execute tests'
17
+ run : ' ./run_tests'
Original file line number Diff line number Diff line change 20
20
additional_dependencies :
21
21
- mdformat-gfm
22
22
- mdformat-toc
23
-
24
23
# EOF
Original file line number Diff line number Diff line change
1
+ export LC_ALL =C
1
2
FILE_NAME =lscolors
2
3
XDG_DATA_HOME ?= $(HOME ) /.local/share
3
4
XDG_DATA_HOME := "$(XDG_DATA_HOME ) "
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ #
3
+
4
+ unset -v XDG_DATA_HOME
5
+ make install
You can’t perform that action at this time.
0 commit comments