Add evaluation module and update Gradio v5 #13
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 src files with Ruff | |
on: | |
push: | |
branches: main | |
paths: | |
- 'src/**' | |
- 'pyproject.toml' | |
- '.github/workflows/ruff.yml' | |
pull_request: | |
paths: | |
- 'src/**' | |
- 'pyproject.toml' | |
- '.github/workflows/ruff.yml' | |
jobs: | |
ruff: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/ruff-action@v1 |