-
Notifications
You must be signed in to change notification settings - Fork 5
41 lines (34 loc) · 926 Bytes
/
main.yml
File metadata and controls
41 lines (34 loc) · 926 Bytes
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
# SPDX-License-Identifier: Apache-2.0
# Copyright 2024 Intel Corporation
name: Main workflow
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
doc8:
uses: omec-project/.github/.github/workflows/make-target-reuse.yml@main
with:
branch_name: ${{ github.ref }}
target: doc8
spell-check:
uses: omec-project/.github/.github/workflows/make-target-reuse.yml@main
with:
branch_name: ${{ github.ref }}
target: spelling
link-check:
uses: omec-project/.github/.github/workflows/make-target-reuse.yml@main
with:
branch_name: ${{ github.ref }}
target: linkcheck
license-check:
uses: omec-project/.github/.github/workflows/license-check.yml@main
with:
branch_name: ${{ github.ref }}
fossa-scan:
uses: omec-project/.github/.github/workflows/fossa-scan.yml@main
with:
branch_name: ${{ github.ref }}