c3lf-system-3/.forgejo/workflows/deploy.yml
lagertonne 33de223a5c
All checks were successful
/ deploy (push) Successful in 2m9s
add ansible version
2024-11-10 21:22:59 +01:00

23 lines
437 B
YAML

on:
push:
branches:
- feature/forgejo-actions
- testing
jobs:
deploy:
runs-on: docker
steps:
- 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
- name: Check ansible version
run: |
ansible --version