File tree Expand file tree Collapse file tree 1 file changed +14
-9
lines changed
Expand file tree Collapse file tree 1 file changed +14
-9
lines changed Original file line number Diff line number Diff line change 1- name : CI
1+ name : ci
22
33on :
44 pull_request :
@@ -16,34 +16,39 @@ permissions:
1616
1717jobs :
1818 test :
19- name : Tests
19+ name : test
2020 runs-on : ${{ github.repository_owner == 'coder' && 'depot-macos-latest' || 'macos-latest'}}
2121 steps :
2222 - name : Checkout
2323 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2424 with :
2525 fetch-depth : 0
2626 - run : |
27- make test
27+ cd "Coder Desktop" && make test
2828 format :
29- name : Format
29+ name : format
3030 runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-4' || 'ubuntu-latest'}}
3131 steps :
3232 - name : Checkout
3333 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3434 with :
3535 fetch-depth : 0
3636 - run : |
37- make fmt
37+ cd "Coder Desktop" && make fmt
3838 lint :
39- name : Format
39+ name : foramt
4040 runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-4' || 'ubuntu-latest'}}
41- container :
42- image : ghcr.io/realm/swiftlint:0.57.1
4341 steps :
4442 - name : Checkout
4543 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4644 with :
4745 fetch-depth : 0
46+ - name : Install Swiftlint 0.57.1
47+ run : |
48+ git clone [email protected] :realm/SwiftLint.git \ 49+ && cd SwiftLint \
50+ && git submodule update --init --recursive \
51+ && git checkout 25f2776977e663305bee71309ea1e34d435065f1 \
52+ && make install && cd ../
4853 - run : |
49- make lint
54+ cd "Coder Desktop" && make test
You can’t perform that action at this time.
0 commit comments