Skip to content

[Fix] Customized Payload to Enable Instructors & Fixed Testing #1

[Fix] Customized Payload to Enable Instructors & Fixed Testing

[Fix] Customized Payload to Enable Instructors & Fixed Testing #1

Workflow file for this run

name: Run Behave Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
behave_test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9.x'
- name: Install backend dependencies
run: |
python -m pip install --upgrade pip
pip install -r backend/requirements.txt
- name: Run Behave tests
run: |
behave backend/features