We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79f7282 commit 2b175eaCopy full SHA for 2b175ea
.github/workflows/ci.yml
@@ -17,12 +17,16 @@ permissions:
17
jobs:
18
test:
19
name: test
20
- runs-on: 'macos-latest'
+ runs-on: ${{ github.repository_owner == 'coder' && 'depot-macos-latest' || 'macos-latest'}}
21
steps:
22
- name: Checkout
23
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
24
with:
25
fetch-depth: 0
26
+ - name: Switch XCode Version
27
+ uses: maxim-lobanov/setup-xcode@v1
28
+ with:
29
+ xcode-version: '16.2'
30
- run: |
31
make test
32
working-directory: Coder Desktop
0 commit comments