8000 Renamed inference Dockerfiles to Dockerfile.infer · ultravioletrs/ai@c4f7b34 · 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. #20

NOISSUE - Create docker files for AI algorithms.

NOISSUE - Create docker files for AI algorithms. #20

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