Skip to content

Merge pull request #1282 from mulkieran/issue_project_819 #1409

Merge pull request #1282 from mulkieran/issue_project_819

Merge pull request #1282 from mulkieran/issue_project_819 #1409

Workflow file for this run

---
name: stratis-cli CI for support code
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:
image: quay.io/fedora/fedora:43 # 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 }}