File tree Expand file tree Collapse file tree 5 files changed +66
-20
lines changed
Expand file tree Collapse file tree 5 files changed +66
-20
lines changed Original file line number Diff line number Diff line change 1+ name : Test - macOS-14
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+ pull_request :
7+ workflow_dispatch :
8+
9+ jobs :
10+ test-macos-14 :
11+ runs-on : macos-14
12+ steps :
13+ - uses : actions/checkout@v4
14+ - uses : ./.github/actions/setup-deno-with-cache
15+ - id : test
16+ run : deno test -A
17+ - name : Run self
18+ uses : ./
19+ with :
20+ success-on-miss : false
Original file line number Diff line number Diff line change 1+ name : Test - macOS-15
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+ pull_request :
7+ workflow_dispatch :
8+
9+ jobs :
10+ test-macos-15 :
11+ runs-on : macos-15
12+ steps :
13+ - uses : actions/checkout@v4
14+ - uses : ./.github/actions/setup-deno-with-cache
15+ - id : test
16+ run : deno test -A
17+ - name : Run self
18+ uses : ./
19+ with :
20+ success-on-miss : false
Original file line number Diff line number Diff line change 1+ name : Test - macOS-latest
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+ pull_request :
7+ workflow_dispatch :
8+
9+ jobs :
10+ test-macos-latest :
11+ runs-on : macos-latest
12+ steps :
13+ - uses : actions/checkout@v4
14+ - uses : ./.github/actions/setup-deno-with-cache
15+ - id : test
16+ run : deno test -A
17+ - name : Run self
18+ uses : ./
19+ with :
20+ success-on-miss : false
Original file line number Diff line number Diff line change 2929 echo "Detected uncommitted changes after build. See status below:"
3030 git diff
3131 exit 1
32- fi
33- test :
34- strategy :
35- matrix :
36- os :
37- - macos-latest
38- - macos-14
39- - macos-15
40- fail-fast : false
41- runs-on : ${{ matrix.os }}
42- steps :
43- - uses : actions/checkout@v4
44- - uses : ./.github/actions/setup-deno-with-cache
45- - id : test
46- run : deno test -A
47- - name : Run self
48- uses : ./
49- with :
50- success-on-miss : false
32+ fi
Original file line number Diff line number Diff line change 11# CyberAgent/action-is-installed-xcode
22
3- [ ![ CI] ( https://github.com/CyberAgent/action-is-installed-xcode/actions/workflows/ci.yml/badge.svg )] ( https://github.com/CyberAgent/action-is-installed-xcode/actions/workflows/ci.yml )
3+ | OS | Status |
4+ | :----------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
5+ | macos-latest | [ ![ Test - macOS-latest] ( https://github.com/CyberAgent/action-is-installed-xcode/actions/workflows/ci-macos-latest.yaml/badge.svg )] ( https://github.com/CyberAgent/action-is-installed-xcode/actions/workflows/ci-macos-latest.yaml ) |
6+ | macos-14 | [ ![ Test - macOS-14] ( https://github.com/CyberAgent/action-is-installed-xcode/actions/workflows/ci-macos-14.yaml/badge.svg )] ( https://github.com/CyberAgent/action-is-installed-xcode/actions/workflows/ci-macos-14.yaml ) |
7+ | macos-15 | [ ![ Test - macOS-15] ( https://github.com/CyberAgent/action-is-installed-xcode/actions/workflows/ci-macos-15.yaml/badge.svg )] ( https://github.com/CyberAgent/action-is-installed-xcode/actions/workflows/ci-macos-15.yaml ) |
48
59CyberAgent/action-is-installed-xcode checks to see if the same Xcode version as GitHub-hosted is installed.
610
You can’t perform that action at this time.
0 commit comments