Skip to content

Add DeployBot status skill #8

Add DeployBot status skill

Add DeployBot status skill #8

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install '.[dev]'
- run: ruff check src tests
- run: python -m unittest discover -s tests -v
- run: python -m build