Bump ch.qos.logback:logback-classic from 1.5.8 to 1.5.9 #107
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
# This is a CI workflow to execute the examples script using kscript. Notice that scripts depending on MATLAB/Simulink are ignored due to the licensing issues. | |
name: kscript examples | |
on: | |
push: | |
paths-ignore: | |
- 'README.md' | |
jobs: | |
kscript: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Ensure the installation of Maven (for self-hosted runners) | |
run: | | |
sudo apt-get update && sudo apt-get install maven -y | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
java-package: jdk | |
distribution: 'temurin' | |
- name: Install LTSMin | |
run: | | |
wget https://github.com/Meijuh/ltsmin/releases/download/v3.1.0/ltsmin-v3.1.0-linux.tgz | |
tar xvf ltsmin-v3.1.0-linux.tgz | |
sudo cp -r v3.1.0/* /usr | |
- name: Cache local Maven repository | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Build and install the top project and the core project with Maven | |
run: mvn install --also-make --projects core | |
- name: Install Kotlin 1.9.X with SDKMAN | |
uses: sdkman/sdkman-action@b1f9b696c79148b66d3d3a06f7ea801820318d0f | |
with: | |
candidate: kotlin | |
version: 1.9.24 | |
- name: Install Kscript with SDKMAN | |
uses: sdkman/sdkman-action@b1f9b696c79148b66d3d3a06f7ea801820318d0f | |
with: | |
candidate: kscript | |
- name: Run the examples | |
run: | | |
cd example/kotlin | |
kscript ./mealy-nox.main.kts |