Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit dcf1d48

Browse files
authored
Merge pull request #7 from secureCodeBox/feature/improve-readme-badges
Improving the readme badges
2 parents 6fb826f + b647c6e commit dcf1d48

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

.codeclimate.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ checks:
66
method-lines:
77
config:
88
threshold: 50
9+
similar-code:
10+
enabled: false
11+
identical-code:
12+
enabled: false
913
exclude_patterns:
1014
- "config/"
1115
- "db/"

.github/workflows/ci.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,12 @@ jobs:
4040
cd -
4141
cd hooks/
4242
npm ci
43-
- name: "Run tests"
44-
run: |
45-
npm test -- --ci --colors --coverage
43+
- name: "Run tests & publish code coverage"
44+
uses: paambaati/codeclimate-action@v2.6.0
45+
env:
46+
CC_TEST_REPORTER_ID: 80b305e484240da8cecbd1d017dfb365d3ee7f4508b5ed8fd9e9348efd286406
47+
with:
48+
coverageCommand: npm test -- --ci --colors --coverage
4649
operator:
4750
name: "Build / Operator"
4851
runs-on: ubuntu-latest

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
# secureCodeBox – v2 ALPHA
22

33
<p align="center">
4-
<img alt="secureCodeBox Logo" src="./docs/resources/securecodebox-logo.svg" width="800px">
4+
<img alt="secureCodeBox Logo" src="./docs/resources/securecodebox-logo.svg" width="500px">
5+
<img alt="secureCodeBox Logo" src="https://owasp.org/assets/images/logo.png" width="200px">
56
</p>
67

78
<p align="center">
89
<a href="https://opensource.org/licenses/Apache-2.0"><img alt="License Apache-2.0" src="https://img.shields.io/badge/License-Apache%202.0-blue.svg"></a>
910
<a href="https://github.com/secureCodeBox/secureCodeBox/releases/latest"><img alt="Latest GitHub Release" src="https://img.shields.io/github/release/secureCodeBox/secureCodeBox.svg"></a>
1011
<a href="https://owasp.org/www-project-securecodebox/"><img alt="OWASP Incubator Project" src="https://img.shields.io/badge/OWASP-Incubator%20Project-365EAA"></a>
12+
<a href="https://twitter.com/securecodebox"><img alt="Twitter Follower" src="https://img.shields.io/twitter/follow/securecodebox?style=flat&color=blue&logo=twitter"></a>
13+
</p>
14+
<p align="center">
15+
<a href="https://opensource.org/licenses/Apache-2.0"><img alt="Build" src="https://github.com/secureCodeBox/secureCodeBox-v2-alpha/workflows/CI/badge.svg"></a>
16+
<a href="https://codeclimate.com/github/secureCodeBox/secureCodeBox-v2-alpha/test_coverage"><img alt="Test Coverage" src="https://api.codeclimate.com/v1/badges/b6bf3af707671b5e5251/test_coverage" /></a>
17+
<a href="https://snyk.io/test/github/secureCodeBox/secureCodeBox-v2-alpha/"><img alt="Known Vulnerabilities" src="https://snyk.io/test/github/secureCodeBox/secureCodeBox-v2-alpha/badge.svg"></a>
1118
</p>
1219

1320
**NOTE**: This Repository contains a **work in progress** preview of the planned next major secureCodeBox Release. You can find the current **stable release** here [https://github.com/secureCodeBox/secureCodeBox](https://github.com/secureCodeBox/secureCodeBox). The release of version 2.0 is still at least some month away but you can already get a sneak peak here 😀. The release will contain a major architecture change which will not be backward compatible. More details will follow soon in a series of blog articles.

0 commit comments

Comments
 (0)