chore(deps): bump the py-dependencies group across 3 directories with 6 updates #39
This file contains hidden or 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: 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/ |