Skip to content

Channel notification (#5) #34

Channel notification (#5)

Channel notification (#5) #34

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: ["master"]
jobs:
test:
name: python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python
run: uv python install
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest --cov-report xml
- name: Coverage Report
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}