From 394c97cfde6bae354d9ff64db17695717b1f8af5 Mon Sep 17 00:00:00 2001 From: Nicolas van Kempen Date: Tue, 26 Sep 2023 07:29:55 -0700 Subject: [PATCH] Add sanity check CI --- .github/workflows/sanity.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/sanity.yml diff --git a/.github/workflows/sanity.yml b/.github/workflows/sanity.yml new file mode 100644 index 0000000..7a1c657 --- /dev/null +++ b/.github/workflows/sanity.yml @@ -0,0 +1,26 @@ +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 version + run: python3 -m chatdbg