Drop support for Python 3.7 #67
Workflow file for this run
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: luma.emulator | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-minor-version: [8, 9, 10, 11, 12, 13] | |
name: Python 3.${{ matrix.python-minor-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup pip cache | |
uses: actions/cache@v4 | |
id: pipcache | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.${{ matrix.python-minor-version }} | |
check-latest: true | |
- name: Install system dependencies | |
run: sudo apt-get install graphviz libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev libfreetype6-dev libjpeg-dev python3-setuptools python3-dev python3-numpy | |
- name: Display Python version | |
run: python -c "import sys; print(sys.version)" | |
- name: Install Python packages | |
run: pip install --upgrade setuptools pip wheel tox coveralls | |
- name: Run tests | |
env: | |
TOX_ENV: py3${{ matrix.python-minor-version }} | |
run: | | |
python_env=$(echo $TOX_ENV | sed -e s/-dev$//) | |
python -m tox -e ${python_env} | |
- name: QA | |
env: | |
TOX_ENV: qa,doc | |
run: python -m tox -e $TOX_ENV | |
- name: Upload Coverage | |
run: coveralls --service=github | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COVERALLS_FLAG_NAME: ${{ matrix.test-name }} | |
COVERALLS_PARALLEL: true | |
coveralls: | |
name: Coveralls | |
needs: build | |
runs-on: ubuntu-latest | |
container: python:3-slim | |
steps: | |
- name: Finished | |
run: | | |
pip3 install --upgrade coveralls | |
coveralls --finish | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |