Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add code coverage #19

Merged
merged 1 commit into from
Jul 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/project-utils.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Utils

on:
workflow_run:
workflows: [ 'Build and Test' ]
branches: [ master ]
types: [ completed ]

jobs:

publish:
runs-on: ubuntu-22.04
if: ${{ github.event.workflow_run.conclusion == 'success' }}

steps:
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}




1 change: 1 addition & 0 deletions NoStringEvaluating.sln
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{88F0773E-1AA1-4C00-A8D8-F09B76A70BE9}"
ProjectSection(SolutionItems) = preProject
.github\workflows\project-build.yml = .github\workflows\project-build.yml
.github\workflows\project-utils.yml = .github\workflows\project-utils.yml
README.md = README.md
.github\workflows\project-publish.yml = .github\workflows\project-publish.yml
EndProjectSection
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Fast low memory consuming mathematical evaluation without endless string parsing! Parses string formula once and uses its object sequence in each evaluation. Moreover provides user defined functions and variables. <br/>
[![Build Status](https://github.com/KovtunV/NoStringEvaluating/actions/workflows/project-build.yml/badge.svg?branch=master&event=push)](https://github.com/KovtunV/NoStringEvaluating/actions/workflows/project-build.yml) [![NuGet version](https://img.shields.io/nuget/v/NoStringEvaluating.svg?style=flat-square)](https://www.nuget.org/packages/NoStringEvaluating) [![NuGet Download](https://img.shields.io/nuget/dt/NoStringEvaluating.svg?style=flat-square)](https://www.nuget.org/packages/NoStringEvaluating) [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Good%20expression%20evaluator,%20take%20a%20look!&url=https://github.com/KovtunV/NoStringEvaluating&hashtags=expression,evaluator,math,formula)
[![Build Status](https://github.com/KovtunV/NoStringEvaluating/actions/workflows/project-build.yml/badge.svg?branch=master&event=push)](https://github.com/KovtunV/NoStringEvaluating/actions/workflows/project-build.yml) [![NuGet version](https://img.shields.io/nuget/v/NoStringEvaluating.svg?style=flat-square)](https://www.nuget.org/packages/NoStringEvaluating) [![NuGet Download](https://img.shields.io/nuget/dt/NoStringEvaluating.svg?style=flat-square)](https://www.nuget.org/packages/NoStringEvaluating) [![codecov](https://codecov.io/github/KovtunV/NoStringEvaluating/branch/master/graph/badge.svg?token=6YEO3GMOCL)](https://codecov.io/github/KovtunV/NoStringEvaluating) [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Good%20expression%20evaluator,%20take%20a%20look!&url=https://github.com/KovtunV/NoStringEvaluating&hashtags=expression,evaluator,math,formula)
<br/>

Microsoft.Extensions.DependencyInjection <br/>
Expand Down