You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Setup Jython
Marketplace
Pre-release
This action provides the following functionality for GitHub Actions users:
- Installing a version of Jython and adding it to
PATH
- Customizing the installation path
steps:
- uses: actions/checkout@v3
- name: Install Jython
uses: LukeSavefrogs/setup-jython@v1
with:
jython-version: '2.5.2'
installation-path: '~/jython/' # Default
- run: jython -c 'import sys, os; print(os.name, sys.version)';
This action supports all versions currently listed on the official repositories:
- SourceForge (
2.0
-2.5.2
) - Maven (
2.5.3-rc1
-2.7.3
)
NOTE
As of
v1
, this action does not support Jython 2.0 and 2.1!