Skip to content
This repository was archived by the owner on Apr 30, 2026. It is now read-only.
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
4 changes: 2 additions & 2 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Check out base branch (main)
- name: Check out base branch
uses: actions/checkout@v4
with:
ref: ${{ github.base_ref }} # Checkout the main branch
ref: ${{ github.base_ref }}
path: 'main'

- name: Check out PR branch
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish to PyPI
name: Build and Publish

on:
push:
Expand Down Expand Up @@ -31,7 +31,7 @@ jobs:
virtualenvs-in-project: true

- name: Install dependencies
run: poetry install --no-interaction --no-root
run: poetry install --no-interaction

- name: Run tests
run: |
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Overmind Client

[![CI Checks](https://github.com/overmind-core/overmind-python/actions/workflows/publish.yml/badge.svg)](https://github.com/overmind-core/overmind-python/actions/workflows/publish.yml)
[![PyPI version](https://img.shields.io/pypi/v/overmind.svg)](https://pypi.org/project/overmind/)

A client for the Overmind API that provides easy access to AI provider endpoints with policy enforcement.

## Features
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "overmind"
version = "0.1.4"
version = "0.1.5"
description = "Python client for Overmind API"
authors = ["Overmind Ltd"]
readme = "README.md"
Expand Down