File tree Expand file tree Collapse file tree 6 files changed +41
-129
lines changed Expand file tree Collapse file tree 6 files changed +41
-129
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ github : [tarleb, jgm]
Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ pull_request :
5+ branches :
6+ - master
7+ paths-ignore :
8+ - ' **/README.md'
9+ - CONTRIBUTING.md
10+ - LICENSE
11+ - .editorconfig
12+ push :
13+ branches :
14+ - master
15+ paths-ignore :
16+ - ' **/README.md'
17+ - CONTRIBUTING.md
18+ - LICENSE
19+ - .editorconfig
20+ schedule :
21+ # At 4:17am each Monday
22+ - cron : ' 17 4 * * 1'
23+
24+ jobs :
25+ test :
26+ runs-on : ubuntu-latest
27+
28+ steps :
29+ - name : Checkout
30+ uses : actions/checkout@v2
31+
32+ - name : Build Docker image
33+ run : make docker-test-image
34+
35+ - name : Run tests in Docker image
36+ run : make docker-test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11FILTERS =$(wildcard $(shell find * -type d | grep -v '[/\\]') )
22FILTER_FILES =$(shell find * -name "* .lua" -type f)
3- LUA_FILTERS_TEST_IMAGE = tarleb /lua-filters-test
3+ LUA_FILTERS_TEST_IMAGE = pandoc /lua-filters-test
44
55.PHONY : test show-args docker-test docker-test-image archive
66
Original file line number Diff line number Diff line change @@ -25,8 +25,9 @@ Each filter goes in its own subdirectory. Each subdirectory contains:
2525Requirements
2626------------
2727
28- Filters are tested against the latest pandoc version. There is
29- no guarantee that filters will work with older versions, but
28+ Filters are tested against the pandoc version in the latest
29+ pandoc/ubuntu Docker image, i.e. usually the latest release. There
30+ is no guarantee that filters will work with older versions, but
3031many do.
3132
3233Some filters depend on external programs, which must be installed
You can’t perform that action at this time.
0 commit comments