forked from github/codeql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommands.yml
More file actions
39 lines (35 loc) · 727 Bytes
/
commands.yml
File metadata and controls
39 lines (35 loc) · 727 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
on: push
defaults:
run:
shell: bash -wkf
jobs:
local_commands:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -job
steps:
- shell: bash -step
run: |
command1 ; command2
- run: |
command3 | command4
- run: |
command5 "$(command6)"
- run: |
command7 && command8
- run: |
command9 || command10
- run: |
command11 "`command12`"
- run: |
command13 "`command14` $(date | wc -l)"
local_commands2:
runs-on: ubuntu-latest
steps:
- shell: bash -step
run: |
command1 ; command2
- shell: pwsh
run: |
command3 | command4