Fix for Issue #428: default_gipass is not required if sysasmpassword and asmmonitorpassword are set #178
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: Python-lint | |
on: | |
pull_request: | |
branches: | |
- master | |
- development | |
push: | |
branches: | |
- 'pr*' | |
jobs: | |
black-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: black | |
uses: psf/black@stable | |
with: | |
options: "--diff --check --verbose" | |
src: "./plugins/modules" | |
version: "23.3.0" | |
flake8-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v3 | |
- name: Set up Python environment | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: flake8 Lint | |
uses: py-actions/flake8@v2 | |
with: | |
include: "./plugins/modules" |