Skip to content

Update CHANGELOG.md #92

Update CHANGELOG.md

Update CHANGELOG.md #92

Workflow file for this run

name: Run Tests
on:
push:
branches:
- '**'
pull_request_target:
branches:
- '**'
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.13'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Run tests
run: make test