MDI Mechanic report #21
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
name: MDI Mechanic report | |
on: workflow_dispatch | |
jobs: | |
report: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.8' | |
- name: Install MDI Mechanic | |
run: pip install mdimechanic | |
- name: Build the MDI Engine | |
run: mdimechanic build | |
- name: Create MDI Mechanic report | |
run: mdimechanic report | |
- name: Run custom MDI Mechanic tests | |
run: | | |
mdimechanic run --name "engine" | |
mdimechanic run --name "launch" | |
mdimechanic run --name "open" | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
title: Update MDI Mechanic report |