Add delete user fuctionality, increase verbosity and general refactoring #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Linting | |
"on": | |
pull_request: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
super-linter: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Lint Code Base | |
uses: github/super-linter@v4 | |
env: | |
VALIDATE_ALL_CODEBASE: true | |
VALIDATE_PYTHON_BLACK: true | |
VALIDATE_YAML: true | |
VALIDATE_ANSIBLE: true | |
ANSIBLE_DIRECTORY: . | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |