?
This commit is contained in:
parent
13f615994b
commit
d6b4907ea2
1 changed files with 7 additions and 0 deletions
7
.github/workflows/ci.yaml
vendored
7
.github/workflows/ci.yaml
vendored
|
|
@ -21,9 +21,16 @@ jobs:
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
with:
|
||||||
|
path: env
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y ffmpeg
|
sudo apt-get install -y ffmpeg
|
||||||
|
python -m venv env
|
||||||
|
source env/bin/activate
|
||||||
|
pwd env
|
||||||
|
which ffmpeg
|
||||||
|
which ffprobe
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install -e .[lint,test]
|
pip install -e .[lint,test]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue