Add post config step to start microshift on ACC #54
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: Check Style | |
on: | |
push: | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install black==22.12.0 | |
python -m pip install flake8 | |
python -m pip install flake8-comprehensions | |
python -m pip install --upgrade pip | |
python -m pip install mypy | |
python -m pip install types-paramiko | |
python -m pip install types-PyYAML | |
python -m pip install types-requests | |
- name: black | |
run: | | |
black --version | |
black --check --diff . | |
- name: flake8 | |
run: | | |
flake8 --version | |
flake8 | |
- name: mypy | |
run: | | |
mypy --version | |
mypy --strict --config-file mypy.ini . |