8000 Add an empty line · ultravioletrs/ai@af3b3c5 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Add an empty line

Add an empty line #27

Workflow file for this run

name: Python CI Pipeline
on:
push:
branches:
- main
paths:

Check failure on line 7 in .github/workflows/python.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/python.yaml

Invalid workflow file

You have an error in your yaml syntax on line 7
- "covid19/**"
- "fraud-detection/**"
- "rul-turbofan"/**"
- ".github/**"
pull_request:
branches:
- main
paths:
- "covid19/**"
- "fraud-detection/**"
- "rul-turbofan"/**"
- ".github/**"
jobs:
py-check:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff on covid19
run: ruff check --output-format=github covid19/
- name: Run Ruff on fraud-detection
run: ruff check --output-format=github fraud-detection/
0