feat: add rust ffi blog #324
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: Vale | |
on: | |
pull_request: | |
jobs: | |
vale: | |
name: runner / vale | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get all changed md/mdx files | |
id: changed-files | |
uses: masesgroup/retrieve-changed-files@v3 | |
with: | |
format: csv | |
# files: | | |
# **/*.md | |
# **/*.mdx | |
- name: List changed files | |
run: | | |
echo "Files changed:" | |
echo "${{ steps.changed-files.outputs.added_modified }}" | |
- name: Run Vale on changed files | |
uses: errata-ai/[email protected] | |
with: | |
files: ${{ steps.changed-files.outputs.added_modified }} | |
reporter: github-pr-check | |
separator: ',' | |
fail_on_error: true |