Skip to content

Commit 3707127

Browse files
committed
initial commit
0 parents  commit 3707127

File tree

19 files changed

+979
-0
lines changed

19 files changed

+979
-0
lines changed

.github/workflows/build.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# This workflow will build a Swift project
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
3+
4+
name: Swift build
5+
6+
on:
7+
push:
8+
branches: [ "main" ]
9+
pull_request:
10+
branches: [ "main" ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: macos-latest
16+
17+
steps:
18+
- uses: actions/checkout@v3
19+
- name: Build
20+
run: |
21+
xcodebuild \
22+
-scheme ExpandableText \
23+
-sdk iphonesimulator \
24+
-destination 'platform=iOS Simulator,name=iPhone 14'

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.DS_Store
2+
/.build
3+
/Packages
4+
/*.xcodeproj
5+
xcuserdata/
6+
DerivedData/
7+
.netrc
8+
.swiftpm

0 commit comments

Comments
 (0)