Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5d3f01ccdc | |||
| 2d80980946 | |||
| fadbb25281 | |||
| ad774549da |
@@ -1,8 +1,5 @@
|
|||||||
name: Workflow for Codecov Action
|
name: Workflow for Codecov Action
|
||||||
on:
|
on: [push, pull_request]
|
||||||
push:
|
|
||||||
branches: master
|
|
||||||
pull_request:
|
|
||||||
jobs:
|
jobs:
|
||||||
run:
|
run:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
name: 'Codecov'
|
name: 'Codecov'
|
||||||
description: 'GitHub Action that uploads coverage reports for your repository to codecov.io'
|
description: 'GitHub Action that uploads coverage reports for your repository to codecov.io'
|
||||||
author: 'Ibrahim Ali <@ibrahim0814> | Codecov'
|
author: 'Ibrahim Ali <@ibrahim0814> & Thomas Hu <@thomasrockhu> | Codecov'
|
||||||
inputs:
|
inputs:
|
||||||
name:
|
name:
|
||||||
description: 'User defined upload name. Visible in Codecov UI'
|
description: 'User defined upload name. Visible in Codecov UI'
|
||||||
|
|||||||
Vendored
+4
-2
@@ -2233,8 +2233,10 @@ try {
|
|||||||
}
|
}
|
||||||
|
|
||||||
request({
|
request({
|
||||||
url: "https://codecov.io/bash",
|
json: false,
|
||||||
json: false
|
maxAttempts: 10,
|
||||||
|
timeout: 3000,
|
||||||
|
url: "https://codecov.io/bash"
|
||||||
}, (error, response, body) => {
|
}, (error, response, body) => {
|
||||||
try {
|
try {
|
||||||
if (error && fail_ci) {
|
if (error && fail_ci) {
|
||||||
|
|||||||
@@ -29,8 +29,10 @@ try {
|
|||||||
}
|
}
|
||||||
|
|
||||||
request({
|
request({
|
||||||
url: "https://codecov.io/bash",
|
json: false,
|
||||||
json: false
|
maxAttempts: 10,
|
||||||
|
timeout: 3000,
|
||||||
|
url: "https://codecov.io/bash"
|
||||||
}, (error, response, body) => {
|
}, (error, response, body) => {
|
||||||
try {
|
try {
|
||||||
if (error && fail_ci) {
|
if (error && fail_ci) {
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "codecov-action",
|
"name": "codecov-action",
|
||||||
"version": "1.0.12",
|
"version": "1.0.13",
|
||||||
"description": "Upload coverage reports to Codecov from GitHub Actions",
|
"description": "Upload coverage reports to Codecov from GitHub Actions",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user