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+ pull_request :
6+
7+ concurrency :
8+ group : ${{ github.workflow }}-${{ github.ref }}
9+ cancel-in-progress : true
10+
11+ jobs :
12+ pytest :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - uses : actions/checkout@v4
16+
17+ - uses : actions/setup-python@v5
18+ with :
19+ python-version : " 3.12"
20+ cache : pip
21+ cache-dependency-path : requirements.txt
22+
23+ - name : Install dependencies
24+ run : pip install -r requirements.txt
25+
26+ - name : Run tests
27+ 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