-
Notifications
You must be signed in to change notification settings - Fork 929
42 lines (31 loc) · 1.05 KB
/
nextcloudfileproviderkit.yml
File metadata and controls
42 lines (31 loc) · 1.05 KB
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
38
39
40
41
42
# SPDX-FileCopyrightText: Nextcloud GmbH
# SPDX-FileCopyrightText: 2025 Iva Horn
# SPDX-License-Identifier: LGPL-3.0-or-later
name: NextcloudFileProviderKit
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
Lint:
runs-on: macos-latest
defaults:
run:
working-directory: shell_integration/MacOSX/NextcloudFileProviderKit
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: SwiftFormat
run: swiftformat --lint . --reporter github-actions-log
Tests:
runs-on: macos-latest
defaults:
run:
working-directory: shell_integration/MacOSX/NextcloudFileProviderKit
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: maxim-lobanov/setup-xcode@ed7a3b1fda3918c0306d1b724322adc0b8cc0a90 # v1.7.0
with:
xcode-version: latest-stable
- name: Run Tests
run: xcodebuild clean build test -scheme NextcloudFileProviderKit -destination "platform=macOS,name=My Mac"