File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+
9+ concurrency :
10+ group : ${{ github.workflow }}-${{ github.ref }}
11+ cancel-in-progress : true
12+
13+ jobs :
14+ pytest :
15+ runs-on : ubuntu-latest
16+ steps :
17+ - uses : actions/checkout@v4
18+
19+ - uses : actions/setup-python@v5
20+ with :
21+ python-version : " 3.12"
22+ cache : pip
23+ cache-dependency-path : requirements.txt
24+
25+ - name : Install dependencies
26+ run : pip install -r requirements.txt
27+
28+ - name : Run tests
29+ run : pytest --tb=short -q
Original file line number Diff line number Diff line change @@ -107,6 +107,10 @@ claude-code-chat-browser/
107107└── tests/
108108```
109109
110+ ## Continuous integration
111+
112+ Every push and pull request runs ** ` pytest ` ** on ** Ubuntu** (Python 3.12) via [ ` .github/workflows/ci.yml ` ] ( .github/workflows/ci.yml ) .
113+
110114## Exported Markdown Format
111115
112116Each exported session includes:
You can’t perform that action at this time.
0 commit comments