gristlabs_grist-core/buildtools/prepare_python.sh
Paul Fitzpatrick 45141ed438 (core) add CI github action for grist-core
Summary:
Activate CI for grist-core using github actions.  Can be improved
with caching but starting simple.

Test Plan: tested in a fork of grist-core

Reviewers: dsagal

Reviewed By: dsagal

Differential Revision: https://phab.getgrist.com/D2771
2021-04-12 17:17:17 -04:00

12 lines
149 B
Bash
Executable File

#!/bin/bash
set -e
if [ ! -e venv ]; then
virtualenv -ppython2.7 venv
fi
. venv/bin/activate
pip install --no-deps -r sandbox/requirements.txt