File tree Expand file tree Collapse file tree 3 files changed +1
-33
lines changed Expand file tree Collapse file tree 3 files changed +1
-33
lines changed Original file line number Diff line number Diff line change 40
40
with :
41
41
version : ${{ matrix.emacs_version }}
42
42
43
- - uses : actions/setup-go@v5
44
-
45
43
- uses : actions/checkout@v4
46
44
47
- - name : Install git-validation
48
- run : go install github.com/vbatts/git-validation@latest
49
-
50
45
- name : make ci
51
46
run : make ci
Original file line number Diff line number Diff line change @@ -31,25 +31,6 @@ style. You can run these checkers by performing:
31
31
$ make lint
32
32
#+END_SRC
33
33
34
- *** Git validation
35
-
36
- In order to ensure that the git log is as maintainable as possible, the
37
- [[https://github.com/vbatts/git-validation][git-validation]] tool is used. You can install this tool by running:
38
-
39
- #+BEGIN_SRC bash
40
- $ go get -u github.com/vbatts/git-validation
41
- #+END_SRC
42
-
43
- If you already have this tool installed, then simply perform:
44
-
45
- #+BEGIN_SRC bash
46
- $ make git-validation
47
- #+END_SRC
48
-
49
- Note that if you don't have this tool installed the task will do nothing (it
50
- will just print a help message). This is done so when running the default make
51
- task this doesn't interrupt it.
52
-
53
34
*** Load test
54
35
55
36
In order to test that this theme can be actually loaded, run:
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ $(OBJECTS): %.elc: %.el
36
36
ci : version all
37
37
38
38
.PHONY : test
39
- test : lint git-validation checkdoc load-test
39
+ test : lint checkdoc load-test
40
40
41
41
# Maybe it would've been nicer to use Cask or something like that, but it
42
42
# doesn't have too many dependencies so it should be fine for now.
@@ -70,14 +70,6 @@ fix-stdlib-changes:
70
70
lint : vendor fix-stdlib-changes
71
71
@$(BATCH ) -l elisp-lint.el -f elisp-lint-files-batch $(ELS )
72
72
73
- .PHONY : git-validation
74
- git-validation :
75
- ifeq (, $(shell which git-validation 2> /dev/null) )
76
- @echo "You don't have 'git-validation' installed, consider installing it (see the CONTRIBUTING.org file)."
77
- else
78
- @git-validation -q -range 7d38ca68163c..HEAD -travis-pr-only=false
79
- endif
80
-
81
73
.PHONY : load-test
82
74
load-test :
83
75
@$(BATCH ) -nw --load soria-theme.el \
You can’t perform that action at this time.
0 commit comments