fix: correct casing for macOS runner label in CI workflow
tests / python (3.11) (push) Successful in 15s
tests-macos / macos (push) Successful in 25s
tests / web (push) Successful in 41s
tests / python (3.10) (push) Failing after 7s

This commit is contained in:
Netherwarlord
2026-07-29 05:52:02 -04:00
parent 949e8971d5
commit d9123461dc
+8 -3
View File
@@ -16,9 +16,14 @@ concurrency:
jobs: jobs:
macos: macos:
# Homebrew act_runner executes jobs directly on the host — there is no # Homebrew act_runner executes jobs directly on the host — there is no
# container. Change this label if the runner was registered with a # container.
# different one; it has to match what the runner declared. #
runs-on: macos-latest # Cased exactly as the runner declared it. Gitea compares runs-on against
# the registered label string, and rather than depend on that comparison
# being case-insensitive, matching the declaration is guaranteed either way.
# The runner also carries Apple-Silicon if a job ever needs to be specific
# about the architecture rather than the OS.
runs-on: MacOS-Latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4