-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #849 from singnet/development
Development
- Loading branch information
Showing
53 changed files
with
3,076 additions
and
26,094 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- development | ||
|
||
name: Sonar Analysis Workflow | ||
jobs: | ||
sonarQubeTrigger: | ||
name: SonarQube Trigger | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: SonarQube Scan | ||
uses: kitabisa/sonarqube-action@master | ||
with: | ||
host: ${{ secrets.SONAR_HOST }} | ||
login: ${{ secrets.SONAR_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
sonar.projectKey=marketplace-dapp | ||
sonar.projectName=marketplace-dapp | ||
sonar.projectVersion=0.0.1 | ||
sonar.sources=. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
src/assets/thirdPartyServices/nunet-org/fake_news_score_service/fake_news_score.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
syntax = "proto3"; | ||
|
||
message InputFNS { | ||
string headline = 1; | ||
string body = 2; | ||
string call_id = 3; | ||
string tracer_info = 4; | ||
} | ||
|
||
message Score { | ||
string stance = 1; | ||
double agree = 2; | ||
double disagree = 3; | ||
double discuss = 4; | ||
double unrelated = 5; | ||
} | ||
|
||
message Resp { | ||
string response =1; | ||
} | ||
|
||
service FakeNewsScore { | ||
rpc fn_score_calc(InputFNS) returns (Resp) {} | ||
} | ||
|
||
|
||
//TODO: warning -- upstream code change (SNET) |
Oops, something went wrong.