Skip to content

Commit 8b9e86b

Browse files
authored
Merge pull request #1 from LinuxForHealth/initial_commit
Initial commit
2 parents 8fee000 + 38021f2 commit 8b9e86b

File tree

402 files changed

+71382
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

402 files changed

+71382
-0
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: nlp-insights PUSH Validation
2+
on:
3+
push:
4+
defaults:
5+
run:
6+
shell: bash
7+
8+
jobs:
9+
job:
10+
name: Build nlp-insights
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
with:
15+
fetch-depth: 0
16+
17+
- name: Setup
18+
run: |
19+
sudo apt install python3.9
20+
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1
21+
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 2
22+
sudo update-alternatives --set python3 /usr/bin/python3.9
23+
sudo pip3 install -U pip
24+
npm install -g dockerlint
25+
- name: Unit Test
26+
run: ./gradlew test
27+
28+
- name: Static Code Analysis
29+
run: |
30+
MESSAGE=$(git log -1 HEAD --pretty=format:%s)
31+
if [[ "$MESSAGE" == *\[noFailForSourceProblems\]* ]]; then
32+
CHECK_SOURCE_NO_FAIL="-PnoFailForSourceProblems"
33+
fi
34+
./gradlew checkSource $CHECK_SOURCE_NO_FAIL
35+
36+
- name: Docker Lint
37+
run: dockerlint
38+
39+
- name: Save Artifiacts
40+
uses: actions/upload-artifact@v2
41+
with:
42+
name: nlp-insights-tests
43+
path: ./build/reports
44+
17 Bytes
Binary file not shown.

.gradle/7.2/dependencies-accessors/gc.properties

Whitespace-only changes.
264 KB
Binary file not shown.
17 Bytes
Binary file not shown.
1 Byte
Binary file not shown.
34.2 KB
Binary file not shown.
17 Bytes
Binary file not shown.

.gradle/7.2/gc.properties

Whitespace-only changes.
17 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)