File tree Expand file tree Collapse file tree 2 files changed +35
-0
lines changed
Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ name: Tests
2+
3+ on:
4+ push:
5+ branches: [main]
6+ pull_request:
7+ branches: [main]
8+
9+ jobs:
10+ test:
11+ runs-on: ubuntu-latest
12+ strategy:
13+ matrix:
14+ lua-version: ["5.1", "5.2", "5.3", "5.4"]
15+
16+ steps:
17+ - uses: actions/checkout@v4
18+
19+ - name: Setup Lua
20+ uses: leafo/gh-actions-lua@v10
21+ with:
22+ luaVersion: ${{ matrix.lua-version }}
23+
24+ - name: Setup LuaRocks
25+ uses: leafo/gh-actions-luarocks@v4
26+
27+ - name: Install dependencies
28+ run: luarocks install busted
29+
30+ - name: Run tests
31+ run: busted
Original file line number Diff line number Diff line change 11# adf2md
22
3+ [](https://github.com/quiqueporta/adf2md/actions/workflows/tests.yml)
4+ 
5+ [](LICENSE)
6+
37A Lua library to convert [Atlassian Document Format (ADF)](https://developer.atlassian.com/cloud/jira/platform/apis/document/structure/) to Markdown.
48
59## Installation
You can’t perform that action at this time.
0 commit comments