Skip to content

Commit aa261e3

Browse files
grokifyclaude
andcommitted
ci(desktop): add GitHub Actions workflow for Swift tests
Use reusable swift-ci workflow from plexusone/.github for build and test. Triggers on push/PR to main when apps/desktop/** changes. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent dc36788 commit aa261e3

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/desktop.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Desktop CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
paths:
7+
- 'apps/desktop/**'
8+
- '.github/workflows/desktop.yml'
9+
pull_request:
10+
branches: [main]
11+
paths:
12+
- 'apps/desktop/**'
13+
- '.github/workflows/desktop.yml'
14+
15+
jobs:
16+
swift-ci:
17+
name: Swift CI
18+
uses: plexusone/.github/.github/workflows/swift-ci.yaml@main
19+
with:
20+
working-directory: apps/desktop

0 commit comments

Comments
 (0)