tools fix, parse docs, inject tools docs into prompts, and attempt to… #261
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: Quality | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout actions | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Init environment | |
uses: ./.github/actions/init-environment | |
- name: Run linter | |
run: | | |
pylint `git diff --name-only --diff-filter=d origin/master HEAD | grep -E '\.py$' | tr '\n' ' '` |