Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on:
push:
branches:
- master
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Comment thread
clean6378-max-it marked this conversation as resolved.
cancel-in-progress: true
Comment thread
clean6378-max-it marked this conversation as resolved.

jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Comment thread
clean6378-max-it marked this conversation as resolved.

- uses: actions/setup-python@v5
Comment thread
clean6378-max-it marked this conversation as resolved.
with:
python-version: "3.12"
cache: pip
cache-dependency-path: requirements.txt

- name: Install dependencies
run: pip install -r requirements.txt

- name: Run tests
run: pytest --tb=short -q
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ claude-code-chat-browser/
└── tests/
```

## Continuous integration

Every push and pull request runs **`pytest`** on **Ubuntu** (Python 3.12) via [`.github/workflows/ci.yml`](.github/workflows/ci.yml).

## Exported Markdown Format

Each exported session includes:
Expand Down
Loading