Refactor _list_pools.py so all methods that handle D-Bus properties are grouped in Default parent class #1316
Workflow file for this run
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: stratis-cli CI for support code | |
| # yamllint disable-line rule:truthy | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - 'CHANGES.txt' | |
| - '**/README.rst' | |
| - 'LICENSE' | |
| - 'docs/**' | |
| - 'shell-completion/**' | |
| pull_request: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - 'CHANGES.txt' | |
| - '**/README.rst' | |
| - 'LICENSE' | |
| - 'docs/**' | |
| - 'shell-completion/**' | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| python-checks: | |
| strategy: | |
| matrix: | |
| include: | |
| - dependencies: yamllint | |
| task: make -f Makefile yamllint | |
| runs-on: ubuntu-latest | |
| container: fedora:42 # CURRENT DEVELOPMENT ENVIRONMENT | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Install dependencies | |
| run: > | |
| dnf install -y | |
| make | |
| ${{ matrix.dependencies }} | |
| - name: Run test | |
| run: ${{ matrix.task }} |