added separate github actions for ansible and python linting and testing, removed them from python-package.yml #8
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 Package - Lint | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
lint-python: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: pip install pycodestyle | |
- name: Lint with pycodestyle | |
run: python -m pycodestyle molecule_qemu |