Skip to content

Commit 13f6630

Browse files
Add GitHub Actions CI (unit tests) and status badge in README
1 parent a8bd552 commit 13f6630

2 files changed

Lines changed: 31 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: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
test:
11+
name: Unit tests
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Set up JDK 17
17+
uses: actions/setup-java@v4
18+
with:
19+
distribution: temurin
20+
java-version: '17'
21+
22+
- name: Set up Android SDK
23+
uses: android-actions/setup-android@v3
24+
25+
- name: Set up Gradle
26+
uses: gradle/actions/setup-gradle@v4
27+
28+
- name: Run unit tests
29+
run: ./gradlew --no-daemon --stacktrace test

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Agentic Task Manager
22

3+
[![CI](https://github.com/tonytonycoder11/agentic-task-manager/actions/workflows/ci.yml/badge.svg)](https://github.com/tonytonycoder11/agentic-task-manager/actions/workflows/ci.yml)
4+
35
An Android task manager whose operations are exposed as [AppFunctions](https://developer.android.com/ai/appfunctions), so an on-device agent can carry them out from natural language. Gemini is the reference agent, but the functions are written and measured to route reliably across function-calling models rather than a single one. The user interface is deliberately minimal; the subject of the project is the agent-facing layer and how reliably it can be driven.
46

57
## Overview

0 commit comments

Comments
 (0)