Skip to content

3410 bug missing concepts and datatype in dataset enrichment #154

3410 bug missing concepts and datatype in dataset enrichment

3410 bug missing concepts and datatype in dataset enrichment #154

Workflow file for this run

---
# This workflow will run Spotless with Java configuration to format the Java codebase
name: Lint Server
# yamllint disable-line rule:truthy
on:
workflow_call:
push:
paths:
- 'packages/server/**'
branches: [ 'main' ]
pull_request:
paths:
- 'packages/server/**'
branches: [ 'main' ]
jobs:
lintServer:
name: Lint Server
runs-on: ubuntu-22.04
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Java v17
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: 17
cache: gradle
- name: Run Spotless
run: |
./gradlew spotlessApply
- name: Commit all changed files
uses: stefanzweifel/git-auto-commit-action@4b8a201e31cadd9829df349894b28c54e6c19fe6
with:
commit_message: "chore: lint server codebase"