Skip to content

Generate README from perevirky #24

Generate README from perevirky

Generate README from perevirky #24

Workflow file for this run

name: CI
on:
# Run on all pull requests that change code.
pull_request:
paths-ignore:
- 'README.md'
- LICENSE
- .editorconfig
# Run every time a code change is pushed.
push:
paths-ignore:
- 'README.md'
- LICENSE
- .editorconfig
# Test if things still work each week.
# This way we will catch incompatible pandoc changes in a timely
# manner.
schedule:
# At 4:11am each Wednesday
- cron: '11 4 * * 3'
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
pandoc:
- edge
- latest
# This should be the oldest version that's supported
# - 2.19.2
container:
image: pandoc/core:${{ matrix.pandoc }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: apk add luarocks5.4 make
- name: Install perevir
run: luarocks-5.4 install perevir
- name: Test
run: |
eval $(luarocks-5.4 path)
make test