Skip to content

Commit 3b72afd

Browse files
authored
Merge pull request #16 from cppalliance/ci/ccc2-pytest-workflow
Ci/ccc2 pytest workflow
2 parents ceefe1c + 1ae6b4c commit 3b72afd

2 files changed

Lines changed: 33 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

112116
Each exported session includes:

0 commit comments

Comments
 (0)