Skip to content

Commit e10ca8d

Browse files
authored
Merge pull request #12 from FiveSheepCo/update-readme
Update README.md
2 parents 85bde6e + f134613 commit e10ca8d

File tree

2 files changed

+19
-10
lines changed

2 files changed

+19
-10
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,19 @@ on:
99
pull_request:
1010
branches: [ "main" ]
1111

12+
env:
13+
PACKAGE: MapItemPicker
14+
1215
jobs:
13-
iOS:
16+
ios:
1417
runs-on: macos-latest
1518
steps:
16-
- uses: actions/checkout@v3
17-
- name: Build
18-
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild build-for-testing -scheme MapItemPicker -destination "platform=iOS Simulator,OS=latest,name=iPhone 14" | xcpretty
19+
- uses: actions/checkout@v4
20+
- name: Setup Xcode 16
21+
uses: maxim-lobanov/setup-xcode@v1
22+
with:
23+
xcode-version: 16
24+
- name: Build (iOS)
25+
run: xcodebuild build -scheme $PACKAGE -sdk iphoneos -destination 'generic/platform=iOS,name=iPhone 15'
26+
- name: Test (iOS)
27+
run: xcodebuild test -scheme $PACKAGE -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 15'

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# MapItemPicker 🗺️📍
22

33
[![GithubCI_Status]][GithubCI_URL]
4-
[![Quintschaf_Badge]](https://quintschaf.com)
4+
[![FiveSheep_Badge]](https://fivesheep.co)
55
[![LICENSE_BADGE]][LICENSE_URL]
66

77
MapItemPicker is a simple, yet highly customizable and powerful location picker for SwiftUI.
@@ -115,8 +115,8 @@ MapItemPicker contains localizations for categories, titles of sections in the v
115115

116116
<!-- References -->
117117

118-
[GithubCI_Status]: https://github.com/quintschaf/MapItemPicker/actions/workflows/ci.yml/badge.svg?branch=main
119-
[GithubCI_URL]: https://github.com/quintschaf/MapItemPicker/actions/workflows/ci.yml
120-
[Quintschaf_Badge]: https://badgen.net/badge/Built%20and%20maintained%20by/Quintschaf/cyan?icon=https://quintschaf.com/assets/logo.svg
121-
[LICENSE_BADGE]: https://badgen.net/github/license/Quintschaf/MapItemPicker
122-
[LICENSE_URL]: https://github.com/Quintschaf/MapItemPicker/blob/master/LICENSE
118+
[GithubCI_Status]: https://github.com/FiveSheepCo/MapItemPicker/actions/workflows/ci.yml/badge.svg?branch=main
119+
[GithubCI_URL]: https://github.com/FiveSheepCo/MapItemPicker/actions/workflows/ci.yml
120+
[FiveSheep_Badge]: https://badgen.net/badge/Built%20and%20maintained%20by/FiveSheep/cyan
121+
[LICENSE_BADGE]: https://badgen.net/github/license/FiveSheepCo/MapItemPicker
122+
[LICENSE_URL]: https://github.com/FiveSheepCo/MapItemPicker/blob/master/LICENSE

0 commit comments

Comments
 (0)