mirror of
https://github.com/deepset-ai/haystack.git
synced 2026-01-01 17:47:19 +00:00
* Add back workflow that runs in place of linting.yml * Add back workflow that runs in place of tests.yml
24 lines
468 B
YAML
24 lines
468 B
YAML
# If you change this name also do it in linting.yml and ci_metrics.yml
|
|
name: Linting
|
|
|
|
on:
|
|
pull_request:
|
|
paths-ignore:
|
|
- "haystack/preview/**/*.py"
|
|
- "test/preview/**/*.py"
|
|
- "e2e/preview/**/*.py"
|
|
- "**/pyproject.toml"
|
|
|
|
jobs:
|
|
mypy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Skip mypy
|
|
run: echo "Skipped mypy"
|
|
|
|
pylint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Skip pylint
|
|
run: echo "Skipped pylint"
|