Skip to content

Updated to handle when ``` is not at start of line. Fixes https://git… #7

Updated to handle when ``` is not at start of line. Fixes https://git…

Updated to handle when ``` is not at start of line. Fixes https://git… #7

Workflow file for this run

name: Sanity
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
sanity:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update pip
run: python3 -m pip install --upgrade pip
- name: Install
run: python3 -m pip install .
- name: Install in editable mode
run: python3 -m pip install -e .
- name: Check help message
run: python3 -m chatdbg --help