workflows/doctor: use ephemeral runners

This workflow hasn't been set up to run on our ephemeral runners. Let's
fix that.
This commit is contained in:
Carlo Cabrera 2022-11-24 14:15:10 +08:00
parent 4abca3fa1f
commit 2f28b28058
No known key found for this signature in database
GPG Key ID: C74D447FC549A1D0

View File

@ -18,9 +18,15 @@ jobs:
tests:
strategy:
matrix:
version: ["12-arm64", "12", "11-arm64", "11", "10.15"]
include:
- runner: "13-arm64-${{github.run_id}}-${{github.run_attempt}}"
- runner: "12-arm64"
- runner: "12-${{github.run_id}}-${{github.run_attempt}}"
- runner: "11-arm64"
- runner: "11-${{github.run_id}}-${{github.run_attempt}}"
- runner: "10.15-${{github.run_id}}-${{github.run_attempt}}"
fail-fast: false
runs-on: ${{ matrix.version }}
runs-on: ${{ matrix.runner }}
env:
PATH: "/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
defaults: