23 lines
398 B
YAML
23 lines
398 B
YAML
name: test
|
|
|
|
on:
|
|
- pull_request
|
|
- push
|
|
|
|
jobs:
|
|
build-docs:
|
|
runs-on: shell
|
|
steps:
|
|
- name: Run ansible Version
|
|
shell: bash
|
|
run: ansible --version
|
|
- name: Show all Vars
|
|
shell: bash
|
|
run: env
|
|
- name: Run 2
|
|
shell: bash
|
|
run: echo "Hello World"
|
|
- name: Test User
|
|
shell: bash
|
|
run: echo "Ich bin User $USER"
|