fix/consistent use of create incident flag #155
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
# CI stages to execute against Pull Requests | |
name: Pylero - CI | |
on: | |
pull_request: | |
types: ["opened", "synchronize", "reopened"] | |
jobs: | |
codechecks: | |
name: Code Quality | |
# The last image version support python3.6, latest have removed it | |
# Still need python3.6 for EPEL8 | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] | |
steps: | |
- name: Checkout Pylero | |
uses: actions/checkout@v3 | |
- name: Set Up Python-${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Dependencies | |
run: | | |
pip install -U pip | |
pip install -U -r requirements.txt | |
pip install . | |
- name: Pre Commit Checks | |
uses: pre-commit/[email protected] |