mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
45141ed438
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
12 lines
149 B
Bash
Executable File
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
|