Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 79f7282

Browse files
committedDec 16, 2024·
retry
1 parent 7affaf1 commit 79f7282

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed
 

‎.github/workflows/ci.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,15 @@ permissions:
1717
jobs:
1818
test:
1919
name: test
20-
runs-on: ${{ github.repository_owner == 'coder' && 'depot-macos-latest' || 'macos-latest'}}
20+
runs-on: 'macos-latest'
2121
steps:
2222
- name: Checkout
2323
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2424
with:
2525
fetch-depth: 0
2626
- run: |
27-
cd "Coder Desktop" && make test
27+
make test
28+
working-directory: Coder Desktop
2829
format:
2930
name: format
3031
runs-on: ${{ github.repository_owner == 'coder' && 'depot-macos-latest' || 'macos-latest'}}
@@ -34,7 +35,8 @@ jobs:
3435
with:
3536
fetch-depth: 0
3637
- run: |
37-
cd "Coder Desktop" && make fmt
38+
make fmt
39+
working-directory: Coder Desktop
3840
lint:
3941
name: lint
4042
runs-on: ${{ github.repository_owner == 'coder' && 'depot-macos-latest' || 'macos-latest'}}
@@ -44,5 +46,5 @@ jobs:
4446
with:
4547
fetch-depth: 0
4648
- run: |
47-
brew install swiftlint
48-
cd "Coder Desktop" && make lint
49+
make lint
50+
working-directory: Coder Desktop

0 commit comments

Comments
 (0)
Please sign in to comment.