Skip to content

Add linux support (Vulkan) #24

Add linux support (Vulkan)

Add linux support (Vulkan) #24

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install Vulkan and dependencies
run: |
sudo apt update -y || true
sudo apt install -y libegl1-mesa libgl1-mesa-dri libxcb-xfixes0-dev mesa-vulkan-drivers
pip install pytest
- name: Run tests
run: PYTHONPATH="./pydawn" python -m pytest test/