Conversation
Signed-off-by: Lee Briggs <lee@leebriggs.co.uk>
There was a problem hiding this comment.
Pull request overview
Adds an additional OS entry to the GitHub Actions smoke test matrix to expand coverage.
Changes:
- Extend the
smoke-testjob OS matrix to includeubuntu-slim.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| strategy: | ||
| matrix: | ||
| os: [ubuntu-latest, windows-latest, macos-latest] | ||
| os: [ubuntu-latest, windows-latest, macos-latest, ubuntu-slim] |
There was a problem hiding this comment.
ubuntu-slim is not a valid GitHub-hosted runner label, and this repo doesn’t appear to use self-hosted runners in workflows. As written, jobs using this matrix entry will fail to start with an unsupported runner label. If the intent is to test a slimmer Linux environment, use a supported runs-on value (e.g., ubuntu-latest/ubuntu-24.04) and run the job inside a container image; if the intent is a self-hosted runner, switch runs-on to an array including self-hosted plus the custom label and ensure such a runner exists.
| os: [ubuntu-latest, windows-latest, macos-latest, ubuntu-slim] | |
| os: [ubuntu-latest, windows-latest, macos-latest, ubuntu-24.04] |
Signed-off-by: Lee Briggs <lee@leebriggs.co.uk>
Signed-off-by: Lee Briggs <lee@leebriggs.co.uk>
Signed-off-by: Lee Briggs lee@leebriggs.co.uk