Use setup-uv
action
#350
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: | |
name: Test on ${{ matrix.runner }} with Python ${{ matrix.python }} | |
runs-on: ${{ matrix.runner }} | |
strategy: | |
matrix: | |
runner: | |
- macos-13 # x64 | |
- macos-14 # arm64 | |
- ubuntu-24.04 | |
- ubuntu-24.04-arm64 # GitHub-hosted larger runner in the ActiveViam organization. | |
- windows-2022 | |
python: | |
- "3.10" | |
include: | |
- runner: ubuntu-24.04 | |
python: "3.11" | |
- runner: ubuntu-24.04 | |
python: "3.12" | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/build-java-runtime | |
with: | |
python-version: ${{ matrix.python}} | |
- uses: ./.github/actions/build-python-wheel | |
# No need to test each platform and Python version. | |
- if: ${{ matrix.runner == 'ubuntu-24.04' && matrix.python == '3.10' }} | |
run: uv run ruff format --check . | |
# No need to test each platform and Python version. | |
- if: ${{ matrix.runner == 'ubuntu-24.04' && matrix.python == '3.10' }} | |
run: uv run ruff check . | |
# No need to test each platform and Python version. | |
- if: ${{ matrix.runner == 'ubuntu-24.04' && matrix.python == '3.10' }} | |
run: uv run mypy | |
- run: uv run pytest | |
# The Python wheels are not tied to a specific Python version. | |
- if: ${{ matrix.python == '3.10' }} | |
uses: actions/upload-artifact@v4 | |
with: | |
if-no-files-found: error | |
name: jdk4py-${{ matrix.runner }}-python-wheel | |
path: dist/jdk4py-*.whl | |
conda-package: | |
name: Test Conda packaging on ${{ matrix.runner }} | |
runs-on: ${{ matrix.runner }} | |
strategy: | |
matrix: | |
runner: | |
- macos-13 # x64 | |
- macos-14 # arm64 | |
- ubuntu-24.04 | |
- ubuntu-24.04-arm64 # GitHub-hosted larger runner in the ActiveViam organization. | |
- windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/build-java-runtime | |
with: | |
# No need to test each Python version. | |
python-version: "3.10" | |
- uses: ./.github/actions/build-conda-packages | |
- uses: actions/upload-artifact@v4 | |
with: | |
if-no-files-found: error | |
name: jdk4py-${{ matrix.runner }}-conda-packages | |
path: dist/*/jdk4py-*.tar.bz2 |