c3lf-system-3/.forgejo/workflows/deploy.yml

24 lines
437 B
YAML
Raw Normal View History

2024-11-10 20:19:00 +00:00
on:
push:
branches:
- feature/forgejo-actions
- testing
2024-11-06 21:26:48 +00:00
jobs:
2024-11-10 20:22:59 +00:00
deploy:
2024-11-06 21:26:48 +00:00
runs-on: docker
steps:
2024-11-10 20:19:00 +00:00
- uses: actions/checkout@v4
- name: Install ansible
run: |
apt update -y
apt install python3-pip -y
python3 -m pip install ansible
python3 -m pip install ansible-lint
2024-11-06 21:26:48 +00:00
2024-11-10 20:22:59 +00:00
- name: Check ansible version
run: |
ansible --version