Skip to content

integrated basic django/scheduler system #2

integrated basic django/scheduler system

integrated basic django/scheduler system #2

Workflow file for this run

---
name: Test
on:
push:
branches: [latest]
paths:
- '**.py'
- '.github/workflows/test.yml'
- 'requirements_test.txt'
pull_request:
branches: [latest]
paths:
- '**.py'
- '**.yml'
- '.github/workflows/test.yml'
- 'requirements_test.txt'
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 1
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- name: Install python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install -r requirements_test.txt
pip install -r requirements.txt
shell: bash
- name: Running Tests
run: python3 -m pytest
shell: bash