15 lines
208 B
YAML
15 lines
208 B
YAML
name: test
|
|
|
|
on:
|
|
- pull_request
|
|
- push
|
|
|
|
jobs:
|
|
build-docs:
|
|
runs-on: shell
|
|
steps:
|
|
- name: Run Shell Command
|
|
run: ansible --version
|
|
- name: Run 2
|
|
run: echo "Hello World"
|