mirror of
https://github.com/microsoft/autogen.git
synced 2026-02-08 18:15:09 -05:00
Add support for task cancellation (#7)
* Add support for task cancellation * add tests to CI * matrix for python testing
This commit is contained in:
21
.github/workflows/checks.yml
vendored
21
.github/workflows/checks.yml
vendored
@@ -51,12 +51,15 @@ jobs:
|
||||
- run: pip install ".[dev]"
|
||||
- uses: jakebailey/pyright-action@v2
|
||||
|
||||
# test:
|
||||
# runs-on: ubuntu-latest
|
||||
# steps:
|
||||
# - uses: actions/checkout@v4
|
||||
# - uses: actions/setup-python@v5
|
||||
# with:
|
||||
# python-version: '3.10'
|
||||
# - run: pip install ".[dev]"
|
||||
# - run: pytest
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["pypy3.10", "3.10", "3.11", "3.12"]
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- run: pip install ".[dev]"
|
||||
- run: pytest
|
||||
|
||||
Reference in New Issue
Block a user