fed8b2eed7
Backend release / release (push) Waiting to run
Bandit Security Scan / bandit_scan (push) Waiting to run
Build and push multi-arch DocsGPT Docker image / build (linux/amd64, ubuntu-latest, amd64) (push) Waiting to run
Build and push multi-arch DocsGPT Docker image / build (linux/arm64, ubuntu-24.04-arm, arm64) (push) Waiting to run
Build and push multi-arch DocsGPT Docker image / manifest (push) Blocked by required conditions
Build and push DocsGPT FE Docker image for development / build (linux/amd64, ubuntu-latest, amd64) (push) Waiting to run
Build and push DocsGPT FE Docker image for development / build (linux/arm64, ubuntu-24.04-arm, arm64) (push) Waiting to run
Build and push DocsGPT FE Docker image for development / manifest (push) Blocked by required conditions
Python linting / ruff (push) Waiting to run
Run python tests with pytest / Run tests and count coverage (3.12) (push) Waiting to run
React Widget Build / build (push) Waiting to run
35 lines
731 B
YAML
35 lines
731 B
YAML
name: Vale Documentation Linter
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'docs/**/*.md'
|
|
- 'docs/**/*.mdx'
|
|
- '**/*.md'
|
|
- '.vale.ini'
|
|
- '.github/styles/**'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
vale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Vale
|
|
run: |
|
|
curl -fsSL -o vale.tar.gz \
|
|
https://github.com/errata-ai/vale/releases/download/v3.0.5/vale_3.0.5_Linux_64-bit.tar.gz
|
|
tar -xzf vale.tar.gz
|
|
sudo mv vale /usr/local/bin/vale
|
|
vale --version
|
|
|
|
- name: Sync Vale packages
|
|
run: vale sync
|
|
|
|
- name: Run Vale
|
|
run: vale --minAlertLevel=error docs
|