pixi task list updated #86
Workflow file for this run
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
name: Lint prose | |
on: | |
pull_request: | |
# manually trigger based on requirement | |
workflow_dispatch: | |
jobs: | |
lint-prose: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Vale | |
uses: errata-ai/vale-action@reviewdog | |
with: | |
files: sayantikabanik/DataJourney/analytics_framework/ai_modeling/*.md | |
vale_flags: --glob=!*/*-fr/* | |
filter_mode: nofilter | |
reporter: github-pr-check | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |