8000 NOISSUE - Create docker files for AI algorithms. (#18) · ultravioletrs/ai@01a2af4 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

NOISSUE - Create docker files for AI algorithms. (#18) #22

NOISSUE - Create docker files for AI algorithms. (#18)

NOISSUE - Create docker files for AI algorithms. (#18) #22

Workflow file for this run

name: Python CI Pipeline
on:
push:
branches:
- main
paths:
- "covid19/**"
- "fraud-detection/**"
- ".github/**"
pull_request:
branches:
- main
paths:
- "covid19/**"
- "fraud-detection/**"
- ".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