1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
#-----------------------------------------------------------------
# File: python-bindings.yaml
#
# Descr: Tests for PMIx Python bindings across different python versions.
# Uses common actions to reduce repetition in this file.
#
# See also: .github/actions/build-python-bindings/action.yaml)
#-----------------------------------------------------------------
name: OpenPMIx-bindings Python Versions
# Run only on pull-requests -or- via manual 'Run workflow' option.
on:
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
# Add additional Python versions to test below:
# Each item should include 'name' and 'python-version'
# (Note: Make sure to quote versions to avoid 3.10 => 3.1)
- name: "CPython 3.9"
python-version: "3.9"
- name: "CPython 3.10"
python-version: "3.10"
- name: "CPython 3.11"
python-version: "3.11"
- name: "CPython 3.12"
python-version: "3.12"
- name: "CPython 3.13"
python-version: "3.13"
name: ${{ matrix.name }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build-python-bindings
with:
python-version: ${{ matrix.python-version }}
|