forked from open-edge-platform/edge-ai-suites
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrobotics-components-groundfloor.yaml
More file actions
53 lines (45 loc) · 1.23 KB
/
robotics-components-groundfloor.yaml
File metadata and controls
53 lines (45 loc) · 1.23 KB
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
# Copyright (C) 2025 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
name: Groundfloor
on:
workflow_call:
inputs:
# workaround until unified workflow is implemented
component-name:
default: groundfloor
required: false
type: string
permissions:
contents: read
defaults:
run:
working-directory: robotics-ai-suite/components/groundfloor
jobs:
lint:
name: '[${{ inputs.component-name }}] Lint'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-depth: 0
sparse-checkout: ./robotics-ai-suite/components/groundfloor
persist-credentials: false
- name: Lint
shell: bash
run: |
make lint
license-check:
name: '[${{ inputs.component-name }}] License Check'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
sparse-checkout: robotics-ai-suite/components/groundfloor
persist-credentials: false
- name: Run REUSE
shell: bash
run: |
make license-check