Skip to content

Feat: slack agent enpoint #14

Feat: slack agent enpoint

Feat: slack agent enpoint #14

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
pull_request:
branches:
- "main"
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
SLACK_USER_TOKEN: ${{ secrets.SLACK_USER_TOKEN }}
OPEN_ROUTER_TOKEN: ${{ secrets.OPEN_ROUTER_TOKEN }}
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
version: "0.8.13"
enable-cache: true
cache-suffix: "optional-suffix"
- name: Set up Python
run: uv python install
- name: Setup Task
uses: arduino/setup-task@v2
with:
version: 3.x
- name: Install dependencies
run: task sync
- name: Format & lint
run: task lint
- name: Run tests
run: task test
- name: List available tasks (debug)
run: task --list