Setup Jolie environment
ActionsTags
(2)GitHub action for setting up a Jolie programming language environment.
It downloads and installs Jolie, making it possible to execute Jolie services by running the usual jolie <program.ol>
.
steps:
- uses: actions/checkout@v3
- id: setup-jolie
uses: jolie/setup-jolie@v1
- run: jolie main.ol
shell: bash
version
: desired Jolie version. See Jolie releases for available versions. Current default is1.12.0
. Note that thev
used in the GitHub tags of Jolie should not be used.java-version
: desired Java version. Current default is21
.node-version
: desired Node version. Current default is20
.
- Introduce a cache to increase the performance of downloading the Jolie installer.
The scripts and documentation in this project are released under the GNU LESSER GENERAL PUBLIC LICENSE.
Setup Jolie environment is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.