Skip to content

Wrap sending message in ChainFunc's notify_user method #51

Wrap sending message in ChainFunc's notify_user method

Wrap sending message in ChainFunc's notify_user method #51

Workflow file for this run

name: Run tests
on:
workflow_dispatch:
push:
branches:
- main
- dev
- develop
- '**-develop'
jobs:
Testing:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ 3.8, 3.9, '3.10', '3.11' ]
os: [ ubuntu-latest ] # , windows-latest, macos-latest ]
steps:
- uses: actions/checkout@v3
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pdm install --no-lock -G testing
- name: Run Tests
run: |
pdm run -v pytest tests