Test showing error #607
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
# This is an example modified from | |
# https://florianschanda.github.io/miss_hit/configuration.html | |
name: miss_hit | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
fetch-depth: 1 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.7 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools | |
pip3 install miss_hit | |
- name: MISS_HIT Metrics | |
run: | | |
mh_metric --ci | |
- name: MISS_HIT Code style | |
run: | | |
mh_style --process-slx | |
- name: MISS_HIT Bug finder | |
run: | | |
mh_lint |