mirror of
https://github.com/safedep/vet.git
synced 2025-12-15 12:58:51 -06:00
Add OpenSSF scorecard badge
This commit is contained in:
parent
23c71ee662
commit
9c1e224a43
@ -4,7 +4,10 @@
|
|||||||
helps engineering and security teams to identify potential issues in their open
|
helps engineering and security teams to identify potential issues in their open
|
||||||
source dependencies and evaluate them against organizational policies.
|
source dependencies and evaluate them against organizational policies.
|
||||||
|
|
||||||
|
[](https://api.securityscorecards.dev/projects/github.com/safedep/vet)
|
||||||
[](https://github.com/safedep/vet/actions/workflows/codeql.yml)
|
[](https://github.com/safedep/vet/actions/workflows/codeql.yml)
|
||||||
|
[](https://github.com/safedep/vet/actions/workflows/scorecard.yml)
|
||||||
|
|
||||||
|
|
||||||
## TL;DR
|
## TL;DR
|
||||||
|
|
||||||
|
|||||||
@ -85,6 +85,8 @@ func (pw *parserWrapper) Ecosystem() string {
|
|||||||
return models.EcosystemPub
|
return models.EcosystemPub
|
||||||
case "requirements.txt":
|
case "requirements.txt":
|
||||||
return models.EcosystemPyPI
|
return models.EcosystemPyPI
|
||||||
|
case "Pipfile.lock":
|
||||||
|
return models.EcosystemPyPI
|
||||||
case "yarn.lock":
|
case "yarn.lock":
|
||||||
return models.EcosystemNpm
|
return models.EcosystemNpm
|
||||||
case "gradle.lockfile":
|
case "gradle.lockfile":
|
||||||
|
|||||||
@ -8,7 +8,7 @@ import (
|
|||||||
|
|
||||||
func TestListParser(t *testing.T) {
|
func TestListParser(t *testing.T) {
|
||||||
parsers := List()
|
parsers := List()
|
||||||
assert.Equal(t, 9, len(parsers))
|
assert.Equal(t, 10, len(parsers))
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestInvalidEcosystemMapping(t *testing.T) {
|
func TestInvalidEcosystemMapping(t *testing.T) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user