8000 chore(deps): bump the py-dependencies group across 3 directories with 6 updates · ultravioletrs/ai@d85610a · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

chore(deps): bump the py-dependencies group across 3 directories with 6 updates #39

chore(deps): bump the py-dependencies group across 3 directories with 6 updates

chore(deps): bump the py-dependencies group across 3 directories with 6 updates #39

Workflow file for this run

name: Python CI Pipeline
on:
push:
branches:
- main
paths:
- "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