Skip to content

Add ContactGroup implementation #40

Add ContactGroup implementation

Add ContactGroup implementation #40

Workflow file for this run

name: test
on:
workflow_dispatch:
push:
branches:
- '**'
paths:
- '**.py'
defaults:
run:
working-directory: ./server
jobs:
test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: '3.12'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements.txt
- name: run pytest
run: |
pytest