Skip to content

Commit 98e4a96

Browse files
committed
NavigationTransitions ✨
0 parents  commit 98e4a96

File tree

73 files changed

+3927
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+3927
-0
lines changed

.github/workflows/ci.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- "**"
10+
schedule:
11+
- cron: '3 3 * * 2' # 3:03 AM, every Tuesday
12+
13+
concurrency:
14+
group: ${{ github.ref }}
15+
cancel-in-progress: true
16+
17+
jobs:
18+
macOS:
19+
name: ${{ matrix.platform }} (Swift ${{ matrix.swift }})
20+
runs-on: ${{ matrix.os }}
21+
strategy:
22+
fail-fast: false
23+
matrix:
24+
os:
25+
- macos-12
26+
platform:
27+
- iOS
28+
swift:
29+
- 5.5
30+
- 5.6
31+
- 5.7
32+
steps:
33+
- uses: actions/checkout@v2
34+
- name: Test NavigationTransitions
35+
uses: mxcl/xcodebuild@v1
36+
with:
37+
platform: ${{ matrix.platform }}
38+
swift: ~${{ matrix.swift }}
39+
action: test
40+
scheme: NavigationTransitions
41+
- if: ${{ matrix.swift >= 5.7 }}
42+
name: Build Demo
43+
uses: mxcl/xcodebuild@v1
44+
with:
45+
platform: ${{ matrix.platform }}
46+
swift: ~${{ matrix.swift }}
47+
action: build
48+
scheme: Demo

.gitignore

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

.spi.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: 1
2+
builder:
3+
configs:
4+
- platform: ios
5+
scheme: NavigationTransitions
6+
- platform: macos-xcodebuild
7+
scheme: NavigationTransitions
8+
- platform: tvos
9+
scheme: NavigationTransitions
10+
- platform: watchos
11+
scheme: NavigationTransitions

0 commit comments

Comments
 (0)