Skip to content

Commit

Permalink
Added python code changes regression testig workflow
Browse files Browse the repository at this point in the history
Signed-off-by: ViNN280801 <vladislav_semykin01@mail.ru>
  • Loading branch information
ViNN280801 committed Nov 7, 2024
1 parent eea086a commit f0a74b5
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/pytesting_ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
paths:
- "**/*.py"
pull_request:
branches: main
branches-ignore: main
paths:
- "**/*.py"
workflow_dispatch:
Expand All @@ -23,8 +23,15 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: 3.7
cache: "pip"
cache-dependency-path: requirements.txt

- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y gcc libglu1-mesa libgl1 ffmpeg libsm6 libxext6 libxft-dev libxinerama-dev
- name: Install dependencies
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
Expand Down

0 comments on commit f0a74b5

Please sign in to comment.