Skip to content

Commit

Permalink
NavigationTransitions ✨
Browse files Browse the repository at this point in the history
  • Loading branch information
davdroman committed Nov 4, 2022
0 parents commit 98e4a96
Show file tree
Hide file tree
Showing 73 changed files with 3,927 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: CI

on:
push:
branches:
- main
pull_request:
branches:
- "**"
schedule:
- cron: '3 3 * * 2' # 3:03 AM, every Tuesday

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
macOS:
name: ${{ matrix.platform }} (Swift ${{ matrix.swift }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-12
platform:
- iOS
swift:
- 5.5
- 5.6
- 5.7
steps:
- uses: actions/checkout@v2
- name: Test NavigationTransitions
uses: mxcl/xcodebuild@v1
with:
platform: ${{ matrix.platform }}
swift: ~${{ matrix.swift }}
action: test
scheme: NavigationTransitions
- if: ${{ matrix.swift >= 5.7 }}
name: Build Demo
uses: mxcl/xcodebuild@v1
with:
platform: ${{ matrix.platform }}
swift: ~${{ matrix.swift }}
action: build
scheme: Demo
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.DS_Store
/.build
/.swiftpm
/Packages
/*.xcodeproj
xcuserdata/
DerivedData/
.netrc
11 changes: 11 additions & 0 deletions .spi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: 1
builder:
configs:
- platform: ios
scheme: NavigationTransitions
- platform: macos-xcodebuild
scheme: NavigationTransitions
- platform: tvos
scheme: NavigationTransitions
- platform: watchos
scheme: NavigationTransitions
Loading

0 comments on commit 98e4a96

Please sign in to comment.