-
Notifications
You must be signed in to change notification settings - Fork 6
37 lines (31 loc) · 765 Bytes
/
test.yml
File metadata and controls
37 lines (31 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Run tests
run: |
xcodebuild test \
-project ClaudeMeter.xcodeproj \
-scheme ClaudeMeter \
-configuration Debug \
-skip-testing:ClaudeMeterTests/MenuBarIconSnapshotTests \
CODE_SIGN_IDENTITY="-" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO