Skip to content

chore(deps): update plugin com.github.johnrengelman.shadow to v7 #3596

chore(deps): update plugin com.github.johnrengelman.shadow to v7

chore(deps): update plugin com.github.johnrengelman.shadow to v7 #3596

Workflow file for this run

name: "Build"
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-24.04
defaults:
run:
working-directory: ./ctm
steps:
- uses: actions/[email protected]
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5
with:
python-version: '3.10'
- uses: olafurpg/setup-scala@32ffa16635ff8f19cc21ea253a987f0fdf29844c # v14
with:
java-version: [email protected]
- name: Build
run: |
chmod +x ./gradlew
./gradlew test --tests "it.unibo.big.localTests.*" --stacktrace --scan
./gradlew shadowJar
- name: Run python
run: |
cd src/main/python/CTM
pip install -r requirements.txt
jupyter nbconvert --execute --to notebook --inplace charts.ipynb
jupyter nbconvert --execute --to notebook --inplace PFPGrowth.ipynb
- name: Release
run: |
npm install
npx semantic-release
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}