This commit is contained in:
parent
fde173baf7
commit
b88fdba1ad
1 changed files with 13 additions and 4 deletions
|
@ -1,9 +1,18 @@
|
||||||
on: [push]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- feature/forgejo-actions
|
||||||
|
- testing
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
|
||||||
image: docker.io/serversideup/ansible:latest
|
|
||||||
steps:
|
steps:
|
||||||
- run: ansible --version
|
- 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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue