ci/cd: fix quality checks not running on all OSes
Previously, quality checks were mistakenly configured to run only on Ubuntu. This commit modifies the CI/CD workflow to use the matrix strategy, allowing the quality checks to be executed on macOS, Ubuntu and Windows. Additionally, this update resolves the `MD034/no-bare-urls Bare URL used` linting error that surfaced when testing on Windows.
This commit is contained in:
2
.github/workflows/checks.quality.yaml
vendored
2
.github/workflows/checks.quality.yaml
vendored
@@ -4,7 +4,7 @@ on: [ push, pull_request ]
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ${{ matrix.os }}-latest
|
||||
strategy:
|
||||
matrix:
|
||||
lint-command:
|
||||
|
||||
Reference in New Issue
Block a user