Skip to content

Rename temp_3.md to mutual_exclusivity_heuristic_rules.md #209

Rename temp_3.md to mutual_exclusivity_heuristic_rules.md

Rename temp_3.md to mutual_exclusivity_heuristic_rules.md #209

Workflow file for this run

name: Format code
on:
push:
branches: [ master ]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Format code with black
run: |
pip install black isort
cd simba
black .
isort .
- name: Commit changes
uses: EndBug/add-and-commit@v4
with:
author_name: ${{ github.actor }}
author_email: ${{ github.actor }}@users.noreply.github.com
message: "cleaned"
add: "."
branch: ${{ github.ref }}