5-improve-encrypted-storage #6
2 changed files with 24 additions and 5 deletions
11
.github/workflows/ci.yml
vendored
11
.github/workflows/ci.yml
vendored
|
|
@ -55,12 +55,13 @@ jobs:
|
||||||
--results-directory ./coverage \
|
--results-directory ./coverage \
|
||||||
-- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=cobertura
|
-- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=cobertura
|
||||||
|
|
||||||
- name: Upload coverage reports to Codecov
|
- name: Code Coverage Report
|
||||||
uses: codecov/codecov-action@v5
|
uses: irongut/CodeCoverageSummary@v1.3.0
|
||||||
with:
|
with:
|
||||||
directory: ./coverage
|
filename: coverage/**/coverage.cobertura.xml
|
||||||
fail_ci_if_error: false
|
badge: true
|
||||||
token: ${{ secrets.CODECOV_TOKEN }}
|
format: markdown
|
||||||
|
output: both
|
||||||
|
|
||||||
- name: Upload coverage artifact
|
- name: Upload coverage artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|
|
||||||
18
README.md
Normal file
18
README.md
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
# IdentityShroud
|
||||||
|
|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
|
IdentityShroud is a .NET project for identity management and protection.
|
||||||
|
|
||||||
|
## Build and Test
|
||||||
|
|
||||||
|
```bash
|
||||||
|
dotnet restore
|
||||||
|
dotnet build
|
||||||
|
dotnet test
|
||||||
|
```
|
||||||
|
|
||||||
|
## Coverage
|
||||||
|
|
||||||
|
Coverage reports are generated automatically in CI and displayed in pull request comments.
|
||||||
Loading…
Add table
Add a link
Reference in a new issue