Skip to content

Commit

Permalink
Add sanity check CI
Browse files Browse the repository at this point in the history
  • Loading branch information
nicovank committed Sep 30, 2023
1 parent 2b39b22 commit 394c97c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/sanity.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 394c97c

Please sign in to comment.