Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 0 additions & 66 deletions .circleci/config.yml

This file was deleted.

1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: [tarleb, jgm]
36 changes: 36 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: CI

on:
pull_request:
branches:
- master
paths-ignore:
- '**/README.md'
- CONTRIBUTING.md
- LICENSE
- .editorconfig
push:
branches:
- master
paths-ignore:
- '**/README.md'
- CONTRIBUTING.md
- LICENSE
- .editorconfig
schedule:
# At 4:17am each Monday
- cron: '17 4 * * 1'

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Build Docker image
run: make docker-test-image

- name: Run tests in Docker image
run: make docker-test
60 changes: 0 additions & 60 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FILTERS=$(wildcard $(shell find * -type d | grep -v '[/\\]'))
FILTER_FILES=$(shell find * -name "*.lua" -type f)
LUA_FILTERS_TEST_IMAGE = tarleb/lua-filters-test
LUA_FILTERS_TEST_IMAGE = pandoc/lua-filters-test

.PHONY: test show-args docker-test docker-test-image archive

Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ Each filter goes in its own subdirectory. Each subdirectory contains:
Requirements
------------

Filters are tested against the latest pandoc version. There is
no guarantee that filters will work with older versions, but
Filters are tested against the pandoc version in the latest
pandoc/ubuntu Docker image, i.e. usually the latest release. There
is no guarantee that filters will work with older versions, but
many do.

Some filters depend on external programs, which must be installed
Expand Down