14 lines
181 B
Bash
Executable File
14 lines
181 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
if [ -z "$GITHUB_ACTIONS" ]; then
|
|
python3 -m venv venv
|
|
PIP="venv/bin/pip"
|
|
else
|
|
PIP="pip"
|
|
fi
|
|
|
|
"$PIP" install -U pip
|
|
"$PIP" install -r requirements.txt
|