Skip to content

Commit

Permalink
Create pyside6.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
zoshua authored Feb 28, 2024
1 parent 822cac0 commit a25cc94
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/pyside6.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Run PySide6 Tests

on:
push:
branches:
- "*"
pull_request:
branches:
- "*"

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- os: ubuntu-latest
VFXPLATFORM: "2018"
PYTHON: "3.6"

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: pip install PySide6
run: |
pip install PySide6
- name: Run tests in Docker container
run: |
docker run --rm \
-v $(pwd):/Qt.py \
-e PYTHON=${{ matrix.PYTHON }} \
fredrikaverpil/qt.py:${{ matrix.VFXPLATFORM }}

0 comments on commit a25cc94

Please sign in to comment.