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
38 changes: 0 additions & 38 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,41 +98,3 @@ jobs:
files: coverage.lcov
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true

docs:
name: 'Build docs'
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Create micromamba environment
uses: mamba-org/setup-micromamba@main
with:
environment-file: dev-environment.yml
cache-environment: true

- name: Configure CMake
run: |
cmake -Bbuild -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX

- name: Build with CMake
working-directory: build
run: cmake --build . --parallel 8

- name: Install docs dependencies
run: |
python -m pip install myst-parser sphinx sphinx-book-theme

- name: Build docs
working-directory: docs
run: |
make html

- name: Upload built docs
uses: actions/upload-artifact@v6
with:
name: git2cpp-docs
path: docs/_build/html
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# git2cpp
[![GithubActions](https://github.com/QuantStack/git2cpp/actions/workflows/test.yml/badge.svg)](https://github.com/QuantStack/git2cpp/actions/workflows/test.yml)
[![Documentation Status](http://readthedocs.org/projects/git2cpp/badge/?version=latest)](https://git2cpp.readthedocs.io/en/latest/?badge=latest)

This is a C++ wrapper of [libgit2](https://libgit2.org/) to provide a command-line interface (CLI)
to `git` functionality. The intended use is in WebAssembly in-browser terminals (see
Expand Down