Run testing repo tests against PR #1963
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
--- | |
# linting and formatting for support code that is not part of the project | |
name: stratisd support CI | |
# yamllint disable-line rule:truthy | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- ".packit.yaml" | |
- "plans/**" | |
- "tests-fmf/**" | |
- "**/*.yml" | |
- "tests/**" | |
- "!tests/**/README.*" | |
pull_request: | |
branches: | |
- master | |
paths: | |
- ".packit.yaml" | |
- "plans/**" | |
- "tests-fmf/**" | |
- "**/*.yml" | |
- "tests/**" | |
- "!tests/**/README.*" | |
workflow_dispatch: | |
# cancel the in-progress workflow when PR is refreshed. | |
# yamllint disable rule:line-length | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
support-checks: | |
strategy: | |
matrix: | |
include: | |
- dependencies: > | |
pylint | |
python3-dbus-client-gen | |
python3-dbus-python-client-gen | |
python3-justbytes | |
python3-psutil | |
python3-pyudev | |
python3-semantic_version | |
python3-tenacity | |
task: PYTHONPATH=./src make -f Makefile lint | |
working-directory: ./tests/client-dbus | |
- dependencies: black python3-isort | |
task: make -f Makefile fmt-ci | |
working-directory: ./tests/client-dbus | |
- dependencies: yamllint tmt | |
task: make -f Makefile yamllint tmtlint | |
working-directory: . | |
runs-on: ubuntu-22.04 | |
container: fedora:40 # CURRENT DEVELOPMENT ENVIRONMENT | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: > | |
dnf install -y | |
make | |
ncurses | |
${{ matrix.dependencies }} | |
- name: Run test | |
run: ${{ matrix.task }} | |
working-directory: ${{ matrix.working-directory }} |