File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,15 @@ permissions:
17
17
jobs :
18
18
test :
19
19
name : test
20
- runs-on : ${{ github.repository_owner == 'coder' && 'depot- macos-latest' || 'macos-latest'}}
20
+ runs-on : ' macos-latest'
21
21
steps :
22
22
- name : Checkout
23
23
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
24
24
with :
25
25
fetch-depth : 0
26
26
- run : |
27
- cd "Coder Desktop" && make test
27
+ make test
28
+ working-directory: Coder Desktop
28
29
format :
29
30
name : format
30
31
runs-on : ${{ github.repository_owner == 'coder' && 'depot-macos-latest' || 'macos-latest'}}
34
35
with :
35
36
fetch-depth : 0
36
37
- run : |
37
- cd "Coder Desktop" && make fmt
38
+ make fmt
39
+ working-directory: Coder Desktop
38
40
lint :
39
41
name : lint
40
42
runs-on : ${{ github.repository_owner == 'coder' && 'depot-macos-latest' || 'macos-latest'}}
44
46
with :
45
47
fetch-depth : 0
46
48
- run : |
47
- brew install swiftlint
48
- cd " Coder Desktop" && make lint
49
+ make lint
50
+ working-directory: Coder Desktop
You can’t perform that action at this time.
0 commit comments