Skip to content

Bump version to 0.2.0 in pyproject + CHANGELOG (OpenClaw) #13

Bump version to 0.2.0 in pyproject + CHANGELOG (OpenClaw)

Bump version to 0.2.0 in pyproject + CHANGELOG (OpenClaw) #13

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e '.[dev]'
- name: Ruff
run: ruff check rejoin tests
- name: Pytest
run: pytest -q