Skip to content

Add expiration mechanic for all assistant-related services #15

Add expiration mechanic for all assistant-related services

Add expiration mechanic for all assistant-related services #15

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
workflow_dispatch:
jobs:
all-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
env: [ '', '-extra-deps']
timeout-minutes: 10
steps:
- name: "Checkout"
uses: actions/checkout@v3
- name: "Set up Python ${{ matrix.python-version }}"
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: "Set up test environment"
run: |
pip install tox tox-gh-actions
- name: "Tests"
run: tox -e py${{ matrix.python-version }}${{ matrix.env}} -- -vv