Skip to content

Add Circle top, left, right, bottom attributes #1675

Add Circle top, left, right, bottom attributes

Add Circle top, left, right, bottom attributes #1675

Workflow file for this run

name: Ubuntu latest
on: [ push, pull_request ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
Python:
runs-on: ubuntu-latest
strategy:
fail-fast: false # if a particular matrix build fails, don't skip the rest
matrix:
python-version: [3.8, 3.9, '3.10', 3.11, 3.12]
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get update --fix-missing
sudo apt-get install -y libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev pkg-config
python -m pip install --upgrade pip
python -m pip install wheel
python -m pip install pygame-ce
python -m pip install .
- name: Run Tests
run: |
python -m unittest