ultralytics / kinect

3D Scene Reconstruction in MATLAB with the Microsoft Kinect depth sensor.
https://ultralytics.com
GNU Affero General Public License v3.0
18 stars 8 forks source link

Update format.yml #7

Closed UltralyticsAssistant closed 6 months ago

UltralyticsAssistant commented 6 months ago

This pull request adds an improved Ultralytics Actions workflow to automatically format code and documentation to the new Ultralytics official standards maintained at https://github.com/ultralytics/actions.

Four individual actions are run by default. To disable actions, set them to false, i.e. 'python: false'.

To customize an action use a pyproject.toml file in this repo, and see the individual action repo for details.

name: Ultralytics Actions

on:
  push:
    branches: [main]
  pull_request:
    branches: [main]

jobs:
  format:
    runs-on: ubuntu-latest
    steps:
      - name: Run Ultralytics Formatting
        uses: ultralytics/actions@main
        with:
          python: true
          docstrings: true
          markdown: true
          spelling: true

πŸ› οΈ PR Summary

Made with ❀️ by Ultralytics Actions

🌟 Summary

Updated the GitHub Actions workflow for code formatting and enhanced the project README for better clarity.

πŸ“Š Key Changes

🎯 Purpose & Impact