Skip to content

Implement v1 show_history status compatibility #750

Implement v1 show_history status compatibility

Implement v1 show_history status compatibility #750

name: Durable Task Scheduler SDK (durabletask-azuremanaged)
on:
push:
branches:
- "main"
tags:
- "azuremanaged-v*" # Only run for tags starting with "azuremanaged-v"
pull_request:
branches:
- "main"
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.14
uses: actions/setup-python@v5
with:
python-version: 3.14
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install nox
- name: Run lint checks
run: nox -s lint
run-docker-tests:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
needs: lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Nox
run: |
python -m pip install --upgrade pip
pip install nox
- name: Run the tests
run: nox -s azuremanaged_tests-${{ matrix.python-version }}