Skip to content

Commit f2316f3

Browse files
committed
Remove codecov from GH action
1 parent 19f95db commit f2316f3

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

.github/workflows/go.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
name: Test & Coverage
1+
name: Build and Test
22
on: [pull_request, push]
33
jobs:
4-
test_and_coverage:
4+
build_and_test:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v2
@@ -20,14 +20,6 @@ jobs:
2020
uses: actions/setup-go@v2
2121
with:
2222
go-version: ^1.20
23-
- name: Build all
23+
- name: Build and test all
2424
run: |
2525
bash ./all.bash
26-
- name: Test & Coverage
27-
run: |
28-
go test -coverprofile=coverage.out -covermode=atomic ./...
29-
- name: Upload to codecov.io
30-
uses: codecov/codecov-action@v1
31-
with:
32-
token: ${{secrets.CODECOV_TOKEN}}
33-
fail_ci_if_error: true

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
[![Go Reference](https://pkg.go.dev/badge/github.com/cpmech/gosl.svg)](https://pkg.go.dev/github.com/cpmech/gosl)
44
[![Go Report Card](https://goreportcard.com/badge/github.com/cpmech/gosl)](https://goreportcard.com/report/github.com/cpmech/gosl)
5-
[![codecov](https://codecov.io/gh/cpmech/gosl/branch/main/graph/badge.svg?token=2QnqwyGTYx)](https://codecov.io/gh/cpmech/gosl)
65
[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/avelino/awesome-go)
76

87
Gosl is a set of tools for developing scientific simulations using the Go language. We mainly consider the development of numerical methods and solvers for differential equations but also present some functions for fast Fourier transforms, the generation of random numbers, probability distributions, and computational geometry.

0 commit comments

Comments
 (0)