Skip to content

Commit f5da1b2

Browse files
Add installation sources in README.md
1 parent 1ba0888 commit f5da1b2

File tree

8 files changed

+28
-13
lines changed

8 files changed

+28
-13
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: [ main ]
88
workflow_dispatch:
99
schedule:
10-
# 12 PM IST / 06:30 GMT every Sunday.
10+
# 12:00 PM IST / 6:30 AM GMT every Sunday.
1111
- cron: '30 6 * * 0'
1212

1313
jobs:

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# setup-lcov
22

3-
Composite GitHub Action to setup LCOV. <br/>
3+
Composite GitHub Action to setup [LCOV].
4+
5+
6+
# Setup sources
7+
8+
Linux - <br/>
9+
sudo apt-get -y install lcov
10+
11+
macOS - <br/>
12+
brew install lcov
13+
14+
Windows - <br/>
15+
choco install lcov
416

517

618
# Usage
@@ -10,3 +22,6 @@ steps:
1022
- name: Setup LCOV
1123
uses: hrishikesh-kadam/setup-lcov@v1
1224
```
25+
26+
27+
[LCOV]: https://github.com/linux-test-project/lcov

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: 'Setup LCOV'
22
author: 'Hrishikesh Kadam <hrkadam.92@gmail.com>'
3-
description: 'Composite GitHub Action to Setup LCOV.'
3+
description: 'Composite GitHub Action to setup LCOV.'
44

55
runs:
66
using: 'composite'

bin/gendesc.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
@echo off
2-
perl C:\ProgramData\chocolatey\lib\lcov\tools\bin\gendesc %*
1+
@echo off
2+
perl C:\ProgramData\chocolatey\lib\lcov\tools\bin\gendesc %*

bin/genhtml.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
@echo off
2-
perl C:\ProgramData\chocolatey\lib\lcov\tools\bin\genhtml %*
1+
@echo off
2+
perl C:\ProgramData\chocolatey\lib\lcov\tools\bin\genhtml %*

bin/geninfo.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
@echo off
2-
perl C:\ProgramData\chocolatey\lib\lcov\tools\bin\geninfo %*
1+
@echo off
2+
perl C:\ProgramData\chocolatey\lib\lcov\tools\bin\geninfo %*

bin/genpng.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
@echo off
2-
perl C:\ProgramData\chocolatey\lib\lcov\tools\bin\genpng %*
1+
@echo off
2+
perl C:\ProgramData\chocolatey\lib\lcov\tools\bin\genpng %*

bin/lcov.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
@echo off
2-
perl C:\ProgramData\chocolatey\lib\lcov\tools\bin\lcov %*
1+
@echo off
2+
perl C:\ProgramData\chocolatey\lib\lcov\tools\bin\lcov %*

0 commit comments

Comments
 (0)