Small refactor of the selection logic in Profile editor, to clear the… #2514
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: openshot-qt CI Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, ubuntu-22.04] | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo add-apt-repository ppa:openshot.developers/libopenshot-daily | |
sudo apt update | |
sudo apt install libopenshot-audio-dev libopenshot-dev python3-openshot | |
sudo apt install qttranslations5-l10n libssl-dev xvfb | |
sudo apt install python3-pyqt5 python3-pyqt5.qtsvg python3-pyqt5.qtwebengine python3-pyqt5.qtopengl python3-zmq python3-xdg | |
pip3 install setuptools wheel sentry-sdk | |
pip3 install cx_Freeze==6.1 distro defusedxml requests certifi chardet urllib3 | |
- name: Test | |
run: python3 ./src/tests/query_tests.py -platform minimal |