Skip to content

Commit

Permalink
Add PyTest CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidoTek committed May 18, 2024
1 parent 8c5ceee commit 1088ced
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/testing-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
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@v4
with:
python-version: "${{ matrix.python-version }}"

- name: Install dependencies
run: pip install pytest pytest-md pytest-emoji

- name: Install ProtonUp-Qt
run: pip install -e .

- name: Run pytest
uses: pavelzw/pytest-action@v2
with:
verbose: true
emoji: true
job-summary: true
custom-arguments: '-q'
click-to-expand: true
report-title: 'ProtonUp-Qt Test Report'

0 comments on commit 1088ced

Please sign in to comment.