-
Notifications
You must be signed in to change notification settings - Fork 6
64 lines (54 loc) · 1.51 KB
/
check_and_tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: NNC Plugin
on: [push, workflow_dispatch]
jobs:
spell-check:
runs-on: ubuntu-latest
steps:
- name: Clone sDeepConsolePrototype
uses: actions/checkout@v2
- name: Check spell
uses: sobolevn/misspell-fixer-action@master
with:
options: '-rsvn .'
check-format-and-copyright:
runs-on: ubuntu-latest
steps:
- name: Clone NNC Plugin
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Check
run: |
git remote -v
git status
python3 -m pip install autopep8 tqdm
python3 tools/scripts/copyright_checker.py
bash tools/scripts/check_diff.sh
- name: Upload artifact
uses: actions/upload-artifact@v4
if: failure()
with:
name: format diff
path: output/format
check-help-messages:
runs-on: ubuntu-latest
steps:
- name: Clone NNC Plugin
uses: actions/checkout@v2
- name: Clone nnabla-example
uses: actions/checkout@v2
with:
repository: sony/nnabla-examples
path: ./plugins/_NNablaExamples/nnabla-examples
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Check
run: |
python3 -m pip install -r requirement.txt
python3 tools/scripts/check_plugin_help.py