Skip to content

Commit 29e343c

Browse files
committed
fix(ci): use self-hosted runner for unit tests (private repo)
GitHub-hosted runners (ubuntu-latest, etc.) are not available for private repos without paid Actions minutes. Reverts the matrix to run on the self-hosted macOS runner while keeping the 3-job split that deduplicates unit test runs. Signed-off-by: Sebastien Tardif <sebtardif@ncf.ca>
1 parent 9373849 commit 29e343c

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ concurrency:
1414

1515
jobs:
1616
unit-test:
17-
strategy:
18-
fail-fast: false
19-
matrix:
20-
os: [ubuntu-latest, macos-latest, windows-latest]
21-
runs-on: ${{ matrix.os }}
17+
runs-on:
18+
- self-hosted
19+
- macOS
20+
- ARM64
21+
- patchloom-vscode
2222
timeout-minutes: 10
2323
steps:
2424
- name: Checkout

0 commit comments

Comments
 (0)