Add 3.12 to the Python versions supported by the Conda package and add support for Prometheus' JMX Exporter #260
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: Test | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
architecture: | |
- x64 | |
os: | |
- macos-latest-large | |
- ubuntu-latest | |
- windows-latest | |
python: | |
- "3.12" | |
include: | |
- architecture: aarch64 | |
os: macos-latest-xlarge | |
python: "3.12" | |
- architecture: x64 | |
os: ubuntu-latest | |
python: "3.11" | |
- architecture: x64 | |
os: ubuntu-latest | |
python: "3.10" | |
- architecture: x64 | |
os: ubuntu-latest | |
python: "3.9" | |
fail-fast: false | |
name: Test on ${{ matrix.os }}-${{ matrix.architecture }} with Python ${{ matrix.python }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/build-jdk | |
with: | |
architecture: ${{ matrix.architecture }} | |
python-version: ${{ matrix.python }} | |
- uses: ./.github/actions/create-python-wheel | |
with: | |
build-number: ${{ env.JDK4PY_BUILD_NUMBER }} | |
# The library's Python wheels are not tied to a specific version of Python so there is no need to upload the package for each Python version. | |
- if: ${{ matrix.python == '3.12' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
if-no-files-found: error | |
name: jdk4py-${{ matrix.os }}-${{ matrix.architecture }}.whl | |
path: dist/jdk4py-*.whl | |
# No need to do that for each OS and Python version. | |
- if: ${{ matrix.os == 'ubuntu-latest' && matrix.python == '3.12' }} | |
name: Check formatting, linting, and types | |
run: poetry run ruff format --check . && poetry run ruff check . && poetry run mypy --show-error-codes jdk4py scripts tests | |
- run: poetry run pytest | |
conda-package: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
architecture: | |
- x64 | |
os: | |
- macos-latest-large | |
- ubuntu-latest | |
- windows-latest | |
include: | |
- architecture: aarch64 | |
os: macos-latest-xlarge | |
name: Test Conda packaging on ${{ matrix.os }}-${{ matrix.architecture }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/build-jdk | |
with: | |
architecture: ${{ matrix.architecture }} | |
# No need to test for each Python version. | |
python-version: "3.12" | |
- uses: ./.github/actions/create-conda-package | |
with: | |
architecture: ${{ matrix.architecture }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
if-no-files-found: error | |
name: jdk4py-${{ matrix.os }}-${{ matrix.architecture }}-conda-packages | |
path: dist/${{ env.JDK4PY_CONDA_PLATFORM }}/jdk4py-*.tar.bz2 |