ultralytics / flickr_scraper

Simple Flickr Image Scraper
https://ultralytics.com
GNU Affero General Public License v3.0
214 stars 62 forks source link

Update format.yml #18

Closed UltralyticsAssistant closed 11 months ago

UltralyticsAssistant commented 11 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

Enhancements to the automatic formatting workflow and README documentation.

šŸ“Š Key Changes

šŸŽÆ Purpose & Impact