Translations update from Hosted Weblate #47
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: Test using Pytest | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
tests: | |
name: "Run PyTest" | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
python-version: ["3.10"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "${{ matrix.python-version }}" | |
cache: "pip" | |
- name: Install dependencies | |
run: | | |
sudo apt install -y libegl1 libxkbcommon0 | |
pip install pytest pytest-md pytest-emoji | |
- name: Install ProtonUp-Qt | |
run: pip install -e . | |
- name: Run pytest | |
uses: pavelzw/pytest-action@v2 | |
env: | |
QT_QPA_PLATFORM: "offscreen" | |
with: | |
verbose: true | |
emoji: true | |
job-summary: true | |
custom-arguments: '-q' | |
click-to-expand: true | |
report-title: 'ProtonUp-Qt Test Report' |