18 lines
348 B
YAML
18 lines
348 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- feature/forgejo-actions
|
|
- testing
|
|
jobs:
|
|
test:
|
|
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
|
|
|