Skip to content

docs: add changelog standards and structure guidelines #195

docs: add changelog standards and structure guidelines

docs: add changelog standards and structure guidelines #195

Workflow file for this run

name: Behave Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ '*' ]
jobs:
behave-tests:
permissions:
contents: read
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.14"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install UV
uses: astral-sh/setup-uv@v7
- name: Cache UV
uses: actions/cache@v5
with:
path: ~/.cache/uv
key: uv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('uv.lock') }}
- name: Install dependencies
run: make install-dev
- name: Run Behave tests
run: make behave