Fix Ollama assistant message not being gathered when sent to the API #130
Workflow file for this run
This file contains hidden or 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
name: Kotlin Lint Check | |
on: | |
pull_request_target: | |
branches: | |
- "main" | |
paths-ignore: | |
- ".gitignore" | |
- "**.md" | |
- "LICENSE" | |
- ".idea/**" | |
- ".github/**" | |
- ".editorconfig" | |
- "images/**" | |
- "metadata/**" | |
jobs: | |
ktlint: | |
name: Check Kotlin Code Format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4 | |
- name: Run ktlint | |
uses: ScaCap/action-ktlint@master | |
with: | |
filter_mode: file | |
github_token: ${{ secrets.github_token }} | |
reporter: github-check |