Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 0 additions & 26 deletions .circleci/check_pr_status.sh

This file was deleted.

300 changes: 0 additions & 300 deletions .circleci/config.yml

This file was deleted.

15 changes: 0 additions & 15 deletions .github/workflows/auto-assign.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/changelog-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Changelog guard (for release of hotfix)

permissions:
contents: read

on:
pull_request:
branches:
- 'release/**'
- 'Release/**'
- 'hotfix/**'
- 'Hotfix/**'

jobs:
changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: tj-actions/changed-files@v42
id: changed
- name: Ensure CHANGELOG.md updated
if: contains(steps.changed.outputs.all_changed_files, 'CHANGELOG.md') == false
uses: actions/github-script@v7
with:
script: core.setFailed('CHANGELOG.md must be updated.')
27 changes: 27 additions & 0 deletions .github/workflows/compatibility.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Requirements compatibility for supported Python versions
permissions:
contents: read

on:
pull_request:
paths:
- "pyproject.toml"

jobs:
compatibility:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- run: |
python -m pip install --upgrade pip
python -m pip install ".[dev,cli]" --dry-run --no-deps
Loading