mirror of
https://github.com/codecov/codecov-action.git
synced 2026-03-29 01:15:09 +00:00
Compare commits
1 Commits
timeouts
...
test-actio
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
66ddb8cd18 |
5
.github/workflows/main.yml
vendored
5
.github/workflows/main.yml
vendored
@@ -1,5 +1,8 @@
|
|||||||
name: Workflow for Codecov Action
|
name: Workflow for Codecov Action
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
branches: master
|
||||||
|
pull_request:
|
||||||
jobs:
|
jobs:
|
||||||
run:
|
run:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
@@ -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> & Thomas Hu <@thomasrockhu> | Codecov'
|
author: 'Ibrahim Ali <@ibrahim0814> | Codecov'
|
||||||
inputs:
|
inputs:
|
||||||
name:
|
name:
|
||||||
description: 'User defined upload name. Visible in Codecov UI'
|
description: 'User defined upload name. Visible in Codecov UI'
|
||||||
|
|||||||
6
dist/index.js
vendored
6
dist/index.js
vendored
@@ -2233,10 +2233,8 @@ try {
|
|||||||
}
|
}
|
||||||
|
|
||||||
request({
|
request({
|
||||||
json: false,
|
url: "https://codecov.io/bash",
|
||||||
maxAttempts: 10,
|
json: false
|
||||||
timeout: 3000,
|
|
||||||
url: "https://codecov.io/bash"
|
|
||||||
}, (error, response, body) => {
|
}, (error, response, body) => {
|
||||||
try {
|
try {
|
||||||
if (error && fail_ci) {
|
if (error && fail_ci) {
|
||||||
|
|||||||
6
index.js
6
index.js
@@ -29,10 +29,8 @@ try {
|
|||||||
}
|
}
|
||||||
|
|
||||||
request({
|
request({
|
||||||
json: false,
|
url: "https://codecov.io/bash",
|
||||||
maxAttempts: 10,
|
json: false
|
||||||
timeout: 3000,
|
|
||||||
url: "https://codecov.io/bash"
|
|
||||||
}, (error, response, body) => {
|
}, (error, response, body) => {
|
||||||
try {
|
try {
|
||||||
if (error && fail_ci) {
|
if (error && fail_ci) {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "codecov-action",
|
"name": "codecov-action",
|
||||||
"version": "1.0.13",
|
"version": "1.0.12",
|
||||||
"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