Skip to content
This repository has been archived by the owner on Aug 29, 2024. It is now read-only.

Bump urllib3 from 2.0.2 to 2.0.6 in /notebooks/01-use-cases/finance/risk-management/operational-risk/credit-card-fraud-detection/atoti-pycaret #768

Bump urllib3 from 2.0.2 to 2.0.6 in /notebooks/01-use-cases/finance/risk-management/operational-risk/credit-card-fraud-detection/atoti-pycaret

Bump urllib3 from 2.0.2 to 2.0.6 in /notebooks/01-use-cases/finance/risk-management/operational-risk/credit-card-fraud-detection/atoti-pycaret #768

Workflow file for this run

name: Test
on: [pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python: ["3.10"]
node-version: [16.x]
fail-fast: false
name: Test on ${{ matrix.os }} with Python ${{ matrix.python }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
architecture: x64
python-version: ${{ matrix.python }}
- name: Install Graphviz
run: sudo apt-get install graphviz
- name: Install Poetry
run: pip install poetry
- name: Install Python dependencies
run: poetry install
- name: Run Black
run: poetry run black . --check
- name: Run Black on notebooks
run: poetry run black-nb notebooks/ --check
- name: Run notebooks
run: poetry run python tests/execute_notebooks.py