Skip to content

Service

Service #1255

name: Service
on:
push:
branches:
- master
paths:
- '.github/workflows/cron-tests-service.yml'
schedule:
- cron: '0 7 * * *'
workflow_dispatch: ~
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup-python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: install
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: test
run: |
pytest -v ./tests/test_service.py