Skip to content

Commit

Permalink
Windows tests
Browse files Browse the repository at this point in the history
  • Loading branch information
szczepanskiNicolas committed Oct 16, 2023
1 parent a6da07f commit 86708e5
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build

on: [push]
#on: [push]

jobs:
build_wheels:
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/tests_windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Windows tests

on: [push]
#on:
# workflow_run:
# workflows: ["Build"]
# types:
# - completed

jobs:
tests:
runs-on: windows-2019
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v3
- name: Build a wheel via an sdist
run: |
pip install build
python -m build
pip install dist/pyxai*.whl
sudo apt install ffmpeg libsm6 libxext6 qt6-base-dev libxcb-cursor0 -y
- name: Run test suite
run: |
python3 -m pyxai -tests

0 comments on commit 86708e5

Please sign in to comment.