Skip to content

Commit

Permalink
enhancement #36: adding dependencies to ci/cd for building pygobject
Browse files Browse the repository at this point in the history
  • Loading branch information
FabienDanieau committed Feb 1, 2024
1 parent a6c16f1 commit 96bdbf2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 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 libgirepository1.0-dev
python -m pip install --upgrade pip
pip install .[dev]
- name: Lint with flake8
Expand All @@ -44,6 +45,7 @@ jobs:
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
sudo apt install -y libgirepository1.0-dev
python -m pip install --upgrade pip
pip install .[dev]
- name : Lint with mypy
Expand All @@ -60,6 +62,7 @@ jobs:
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
sudo apt install -y libgirepository1.0-dev
python -m pip install --upgrade pip
pip install .[dev]
- name: Test with pytest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
sudo apt install -y libgirepository1.0-dev
python -m pip install --upgrade pip
pip install .[dev]
- name: Unit tests
Expand Down

0 comments on commit 96bdbf2

Please sign in to comment.