Skip to content

Fix capitalisation of some parts of reference title #79

Fix capitalisation of some parts of reference title

Fix capitalisation of some parts of reference title #79

Workflow file for this run

name: format
on: [push, pull_request]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install isort and black
run: pip install isort black
- name: Run black
run: black . --check --verbose --diff --color --exclude="/*.ipynb/"
- name: Run isort
run: cd meta-rl && isort . --check --diff --profile black