Skip to content

Commit 5688fd3

Browse files
committed
skipping coverage report for Lua 5.5
1 parent 879f785 commit 5688fd3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
lua-version: [ "5.5", "5.4", "5.3", "5.2", "5.1", "luajit" ]
15-
libflag: ["-shared --coverage"]
1615
runs-on: ubuntu-latest
1716

1817
steps:
@@ -43,6 +42,8 @@ jobs:
4342
4443
- name: Upload coverage status
4544
run: |
45+
# Lua 5.5 report depends on https://github.com/lunarmodules/luacov/pull/118
46+
if: ${{ matrix.lua-version != '5.5' }}
4647
export MY_PYTHON_VER=$(python -c 'import sys; print(".".join(sys.version.split(".")[0:2]))')
4748
export PATH="/Users/runner/Library/Python/$MY_PYTHON_VER/bin:$PATH"
4849
coveralls -b . -i src --dump c.report.json

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
lua-parser
22
==========
33
[![Build Status](https://github.com/andremm/lua-parser/actions/workflows/ci.yml/badge.svg)](https://github.com/andremm/lua-parser/actions)
4-
[![Coverage Status](https://coveralls.io/repos/andremm/lua-parser/badge.png)](https://coveralls.io/r/andremm/lua-parser)
4+
[![Coverage Status](https://coveralls.io/repos/github/andremm/lua-parser/badge.svg)](https://coveralls.io/github/andremm/lua-parser)
55
[![License](http://img.shields.io/badge/Licence-MIT-brightgreen.svg)](LICENSE)
66

77
This is a Lua 5.3 parser written with [LPegLabel](https://github.com/sqmedeiros/lpeglabel) that

0 commit comments

Comments
 (0)