Skip to content

Commit

Permalink
enhancement #29: adding libx264 libvpx to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
FabienDanieau committed Oct 30, 2023
1 parent b1b5566 commit ab4ee2b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
sudo apt install -y libopus-dev libvpx-dev libvpx-dev libx264-dev
python -m pip install --upgrade pip
pip install .[dev]
- name: Lint with flake8
Expand All @@ -44,7 +45,7 @@ jobs:
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
sudo apt install -y libopus-dev
sudo apt install -y libopus-dev libvpx-dev libx264-dev
python -m pip install --upgrade pip
pip install .[dev]
- name : Lint with mypy
Expand All @@ -61,7 +62,7 @@ jobs:
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
sudo apt install -y libopus-dev
sudo apt install -y libopus-dev libvpx-dev libx264-dev
python -m pip install --upgrade pip
pip install .[dev]
- name: Test with pytest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
sudo apt install -y libopus-dev
sudo apt install -y libopus-dev libvpx-dev libx264-dev
python -m pip install --upgrade pip
pip install .[dev]
- name: Unit tests
Expand Down

0 comments on commit ab4ee2b

Please sign in to comment.