Skip to content

PySTARS python version initail commit #33

PySTARS python version initail commit

PySTARS python version initail commit #33

Workflow file for this run

# 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@v2
with:
submodules: true
fetch-depth: 1
- name: Set up Python 3.12.5
uses: actions/setup-python@v2
with:
python-version: 3.12.5
- 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