Skip to content

feat: Create server and bot #6

feat: Create server and bot

feat: Create server and bot #6

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- name: Install uv
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7
- name: Set up Python
run: uv python install
- name: Run Tests
run: uv run pytest
- name: Run Lint
run: uv run ruff check
- name: Run Formatter
run: uv run ruff format --check