12 lines
178 B
YAML
12 lines
178 B
YAML
name: Test
|
|
on:
|
|
workflow_call:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Print workspace
|
|
run: echo ${{ github.workspace }}
|