Fix comment style consistency #51
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: Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| unit-tests: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: registry.fedoraproject.org/fedora:latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: container running | |
| run: | | |
| # Install required RPMS | |
| dnf install -y \ | |
| bash \ | |
| e2fsprogs \ | |
| findutils \ | |
| gcc \ | |
| make \ | |
| parted \ | |
| parted-devel \ | |
| pkg-config \ | |
| python3 \ | |
| python3-coverage \ | |
| python3-devel \ | |
| python3-pip \ | |
| python3-pytest \ | |
| python3-types-six \ | |
| udev | |
| env PYTHON=python3 make test coverage COVERAGE=coverage |