add c1 patchcore #177
Workflow file for this run
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
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 |