File tree Expand file tree Collapse file tree 1 file changed +18
-35
lines changed Expand file tree Collapse file tree 1 file changed +18
-35
lines changed Original file line number Diff line number Diff line change 1
1
name : Static Check
2
2
3
- on :
4
- workflow_call
3
+ on : workflow_call
5
4
6
5
jobs :
7
6
static_check :
8
7
runs-on : ubuntu-24.04
9
8
steps :
10
- - name : Checkout Core
11
- uses : actions/checkout@v3
12
- with :
13
- submodules : recursive
14
- path : core
9
+ - name : Checkout Core
10
+ uses : actions/checkout@v3
11
+ with :
12
+ submodules : recursive
13
+ path : core
15
14
16
- - name : Get Togethers
17
- uses : cfengine/together-javascript-action@main
18
- id : together
19
- with :
20
- myToken : ${{ secrets.GITHUB_TOKEN }}
15
+ - name : Get Togethers
16
+ uses : cfengine/together-javascript-action@main
17
+ id : together
18
+ with :
19
+ myToken : ${{ secrets.GITHUB_TOKEN }}
21
20
22
- - name : Checkout Buildscripts
23
- uses : actions/checkout@v3
24
- with :
25
- repository : cfengine/buildscripts
26
- submodules : recursive
27
- path : buildscripts
28
- ref : ${{steps.together.outputs.buildscripts || github.base_ref || github.ref}}
21
+ - name : Prepare Environment
22
+ run : |
23
+ sudo apt-get update && \
24
+ sudo apt-get install -y buildah
29
25
30
- - name : Checkout Masterfiles
31
- uses : actions/checkout@v3
32
- with :
33
- repository : cfengine/masterfiles
34
- submodules : recursive
35
- path : masterfiles
36
- ref : ${{steps.together.outputs.masterfiles || github.base_ref || github.ref}}
37
-
38
- - name : Prepare Environment
39
- run : |
40
- sudo apt-get update && \
41
- sudo apt-get install -y buildah
42
-
43
- - name : Run The Test
44
- working-directory : ./core
45
- run : ./tests/static-check/run.sh
26
+ - name : Run The Test
27
+ working-directory : ./core
28
+ run : ./tests/static-check/run.sh
You can’t perform that action at this time.
0 commit comments