feat(hyperv): add auth_method, kerberos_keytab, kerberos_principal config options #63
This file contains hidden or 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: stylish | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| stylish: | |
| name: "flake8 & rpmlint" | |
| runs-on: ubuntu-latest | |
| container: | |
| image: fedora:latest | |
| steps: | |
| - name: Base setup | |
| run: | | |
| dnf --setopt install_weak_deps=False install -y \ | |
| git-core \ | |
| python3-flake8 \ | |
| rpmlint | |
| - uses: actions/checkout@v7 | |
| - name: Setup flake8 annotations | |
| uses: rbialon/flake8-annotations@v1 | |
| - name: Run flake8 | |
| run: | | |
| flake8 | |
| - name: Run rpmlint | |
| run: | | |
| rpmlint virt-who.spec |