This commit is contained in:
Jesse Bannon 2022-09-26 10:00:46 -07:00
parent d6b4907ea2
commit 39a7c417c2

View file

@ -17,20 +17,14 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3 uses: actions/setup-python@v4
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
cache: 'pip'
- 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]