Skip to content

Commit

Permalink
Release 0.2.3
Browse files Browse the repository at this point in the history
 * Add. Support gitlab runner CI
 * Add. Support Github Actions
  • Loading branch information
moteus committed Jan 17, 2021
1 parent 2cd56f0 commit 6b1ff74
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014 Alexey Melnichuk
Copyright (c) 2014-2021 Alexey Melnichuk

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
39 changes: 39 additions & 0 deletions rockspecs/luacov-coveralls-0.2.3-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
package = "LuaCov-coveralls"
version = "0.2.3-1"
source = {
url = "git://github.com/moteus/luacov-coveralls",
tag = "v0.2.3"
}
description = {
summary = "LuaCov reporter for coveralls.io service",
detailed = [[
]],
homepage = "http://github.com/moteus/luacov-coveralls",
license = "MIT/X11"
}
dependencies = {
"lua >= 5.1",
-- "luajson",
-- "lua-cjson",
"dkjson",
"luacov > 0.5",
"luafilesystem",
"lua-path",
}
build = {
type = "builtin",
copy_directories = {},
modules = {
['luacov.reporter.coveralls' ] = "src/luacov/reporter/coveralls.lua",
['luacov.coveralls.CiInfo' ] = "src/luacov/coveralls/CiInfo.lua",
['luacov.coveralls.CiRepo' ] = "src/luacov/coveralls/CiRepo.lua",
['luacov.coveralls.utils' ] = "src/luacov/coveralls/utils.lua",
['luacov.coveralls.repo.appveyor' ] = "src/luacov/coveralls/repo/appveyor.lua",
['luacov.coveralls.repo.git' ] = "src/luacov/coveralls/repo/git.lua",
},
install = {
bin = {
["luacov-coveralls"] = "src/bin/luacov-coveralls",
}
},
}

0 comments on commit 6b1ff74

Please sign in to comment.