Remove eglinfo check #8
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: Arcade 3.0 Cross-Platform Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ['3.12'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up environment | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y mesa-common-dev libegl1-mesa-dev | |
- name: Install dependencies | |
run: | | |
make setup | |
uv python pin ${{ matrix.python-version }} | |
uv add pytest pytest-cov --dev | |
uv sync --all-extras --dev | |
- name: Run tests | |
run: | | |
uv run pytest tests/ --show-capture=no |