Fix NumpyAgentDataSet agent id dtype after storage expansion (#3820) #50
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
| # Vale Prose Linter GitHub Actions Workflow | |
| name: Vale Prose Linter | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.md' | |
| - '**.rst' | |
| - '**.txt' | |
| - 'docs/**' | |
| - '.vale.ini' | |
| - '.github/styles/**' | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '**.md' | |
| - '**.rst' | |
| - '**.txt' | |
| - 'docs/**' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| vale: | |
| name: Run Vale | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: Run Vale | |
| uses: errata-ai/vale-action@v3.0.0 | |
| with: | |
| files: all | |
| vale_flags: "--minAlertLevel=warning" | |
| fail_on_error: false | |
| filter_mode: nofilter |