Skip to content

Commit

Permalink
fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
codepuncher committed Oct 17, 2024
1 parent 53d0bf8 commit e4bfb4e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Run ansible-lint
uses: ansible-community/ansible-lint-action@main
uses: ansible/ansible-lint@main
# optional (see below):
with:
path: "tests/"
args: ""
setup_python: "true"
working_directory: ""
requirements_file: ""
2 changes: 2 additions & 0 deletions meta/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
galaxy_info:
namespace: itinerisltd
role_name: trellis_wordfence_kinsta
author: Lee Hanbury-Pickett
description: Ensure required WordfFence files exist in shared directory
company: ItinerisLtd
Expand Down
5 changes: 3 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
- name: Template wordfence-waf.php
template:
src: "../templates/wordfence-waf.php.j2"
ansible.builtin.template:
src: "{{ role_path }}/templates/wordfence-waf.php.j2"
dest: "{{ deploy_helper.new_release_path }}/web/wp/wordfence-waf.php"
mode: "0755"
4 changes: 0 additions & 4 deletions tests/test.yml

This file was deleted.

0 comments on commit e4bfb4e

Please sign in to comment.