File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -19,17 +19,21 @@ permissions:
1919
2020jobs :
2121 actions :
22- # Run on ubuntu as problems with docformatter on macOS-26 with Python 3.14
23- runs-on : ubuntu-latest
22+ # Run with Python 3.13 as problems with docformatter on macOS-26 with Python 3.14
23+ runs-on : macos-26
2424 steps :
25+ - name : Setup Python
26+ uses : actions/setup-python@v6
27+ with :
28+ python-version : " 3.13"
2529 - name : Run Ultralytics Actions
2630 uses : ultralytics/actions@main
2731 with :
2832 token : ${{ secrets._GITHUB_TOKEN || secrets.GITHUB_TOKEN }} # Auto-generated token
2933 labels : true # Auto-label issues/PRs using AI
3034 python : true # Format Python with Ruff and docformatter
3135 prettier : true # Format YAML, JSON, Markdown, CSS
32- swift : false # Format Swift (requires macos-latest)
36+ swift : true # Format Swift (requires macos-latest)
3337 spelling : true # Check spelling with codespell
3438 links : false # Check broken links with Lychee
3539 summary : true # Generate AI-powered PR summaries
You can’t perform that action at this time.
0 commit comments