Skip to content

check workflow with new volume size 100GB #1116

check workflow with new volume size 100GB

check workflow with new volume size 100GB #1116

name: format
on:
push:
pull_request:
workflow_call:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install isort and black
run: pip install isort black
- name: Run black to check formatting
run: black --check .
- name: Run isort to check import order
run: isort --check-only --diff .