callback_demo/.gitea/workflows/ansible-centos9.yml
Chris Hammer 6b24fbe3de
Some checks failed
Ansible Test / Explore-Gitea-Actions (push) Failing after 3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
fix runner labels; update runs-on
2023-12-12 23:52:19 -05:00

28 lines
550 B
YAML

name: Ansible Test
run-name: ${{ gitea.actor }} is tesing Ansible with Gitea Actions
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ansible-dev-centos9
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Where are we?
run: |
pwd
- name: Change to ${{ gitea.workspace }}
run: |
cd ${{ gitea.workspace }}
- name: Just a simple ls
run: |
ls
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}