Skip to content

added separate github actions for ansible and python linting and testing, removed them from python-package.yml #8

added separate github actions for ansible and python linting and testing, removed them from python-package.yml

added separate github actions for ansible and python linting and testing, removed them from python-package.yml #8

Workflow file for this run

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