OpenVINO Code Completion is no longer maintained. #105
Workflow file for this run
This file contains hidden or 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: OpenVINO Code Extension Workflow | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| paths: | |
| - 'modules/openvino_code/**' | |
| - '.github/workflows/openvino_code.yml' | |
| concurrency: | |
| group: ${{ github.head_ref || github.ref_name }}-openvino_code | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| working-directory: ./modules/openvino_code | |
| permissions: read-all | |
| jobs: | |
| check_extension: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
| - name: Use Node.js 16.x | |
| uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3.8.2 | |
| with: | |
| node-version: '16.x' | |
| cache: 'npm' | |
| cache-dependency-path: modules/openvino_code/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run Lint | |
| run: npm run lint:all | |
| check_server: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
| - name: Set up Python 3.8 | |
| uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 | |
| with: | |
| python-version: '3.8' | |
| cache: 'pip' | |
| - name: Install dependencies | |
| run: pip install ruff black | |
| - name: Lint with ruff and Black | |
| run: | | |
| cd server | |
| ruff check . | |
| black --check . |