Skip to content

Comprehensive testing of all tasks #1

Comprehensive testing of all tasks

Comprehensive testing of all tasks #1

Workflow file for this run

name: Comprehensive testing of all tasks
on:
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# this Action should follow steps to set up Python build environment
- name: Install Python dependencies
uses: py-actions/py-dependency-install@v2
with:
path: "requirements.txt"
# Runs a set of commands using the runners shell
- name: run Django/Turkle server
run: |
echo 'Python version'
python --version
python3 --version
echo 'Moving to src directory'
cd src
echo 'Print the current directory'
pwd
echo 'List the files in the current directory'
ls -l
echo 'Clone Turkle'
./1_run_website.sh & sleep 30
echo 'Generate the input files'
python 2_generate_input_csv.py
echo 'Upload the tasks'
python 3_upload_tasks.py
echo 'run comprehensive tests'
python comprehensive_test.py