Skip to content

BUG: Use shutil.move for cross-device file renaming (#116) #258

BUG: Use shutil.move for cross-device file renaming (#116)

BUG: Use shutil.move for cross-device file renaming (#116) #258

Workflow file for this run

#
# Code lint and style checks
#
name: Check
on:
push:
branches: [main]
pull_request:
jobs:
check:
name: Code Styles
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install -r requirements.txt
python -m pip install ruff
- name: Check code style
run: make check