Files
Christopher Schleiden 2a3d63551f Rename folders
2023-02-22 15:52:40 -08:00

62 lines
1.1 KiB
YAML

include-source: false # Drop file/line/col from output
---
on: push
jobs:
build:
runs-on: linux
defaults:
run:
shell: cmd
working-directory: ${{github.test}}
steps:
- run: echo hi
---
{
"jobs": [
{
"type": "job",
"id": "build",
"name": "build",
"if": {
"type": 3,
"expr": "success()"
},
"defaults": {
"type": 2,
"map": [
{
"Key": "run",
"Value": {
"type": 2,
"map": [
{
"Key": "shell",
"Value": "cmd"
},
{
"Key": "working-directory",
"Value": {
"type": 3,
"expr": "github.test"
}
}
]
}
}
]
},
"runs-on": "linux",
"steps": [
{
"id": "__run",
"if": {
"type": 3,
"expr": "success()"
},
"run": "echo hi"
}
]
}
]
}