Skip to content
This repository has been archived by the owner on Jun 6, 2023. It is now read-only.

3.0.0 #30

Open
wants to merge 46 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
269ba99
wip
davdroman Nov 17, 2022
26b4a66
wip
davdroman Nov 17, 2022
31e3bb1
wip
davdroman Nov 17, 2022
f87a16d
wip
davdroman Nov 17, 2022
ecbab1c
wip
davdroman Nov 17, 2022
3653a20
wip
davdroman Nov 17, 2022
d97e497
wip
davdroman Nov 17, 2022
90db4cb
wip
davdroman Nov 17, 2022
16145dd
wip
davdroman Nov 17, 2022
af4e36d
wip
davdroman Nov 17, 2022
8a2b722
wip
davdroman Nov 17, 2022
ce00f07
wip
davdroman Nov 17, 2022
e6bc499
wip
davdroman Nov 17, 2022
ee6f63d
wip
davdroman Nov 18, 2022
f432e81
wip
davdroman Nov 18, 2022
0ded59c
wip
davdroman Nov 18, 2022
c4c5dc3
wip
davdroman Nov 18, 2022
b902417
wip
davdroman Nov 18, 2022
380f503
wip
davdroman Nov 18, 2022
f13758d
wip
davdroman Nov 18, 2022
ff1375e
wip
davdroman Nov 18, 2022
e6c5831
wip
davdroman Nov 18, 2022
ce8ebaf
wip
davdroman Nov 18, 2022
053eafb
wip
davdroman Nov 18, 2022
af5c79b
wip
davdroman Nov 18, 2022
e7088eb
wip
davdroman Nov 18, 2022
8de331e
wip
davdroman Nov 18, 2022
fae9c3c
wip
davdroman Nov 18, 2022
b297d70
wip
davdroman Nov 18, 2022
7007a24
wip
davdroman Nov 18, 2022
d8dbdd8
wip
davdroman Nov 18, 2022
abbaf29
wip
davdroman Nov 18, 2022
a19a2fc
wip
davdroman Nov 18, 2022
b9d6383
wip
davdroman Nov 18, 2022
8020983
wip
davdroman Nov 18, 2022
cf4d5ed
wip
davdroman Nov 18, 2022
06e9ab2
wip
davdroman Nov 19, 2022
21f645d
wip
davdroman Nov 19, 2022
e779fd0
wip
davdroman Nov 19, 2022
6979e30
wip
davdroman Nov 19, 2022
88c33d5
wip
davdroman Nov 19, 2022
7864777
wip
davdroman Nov 19, 2022
5caf049
wip
davdroman Nov 19, 2022
10e9715
wip
davdroman Nov 19, 2022
a2c1126
wip
davdroman Nov 22, 2022
78e0b19
wip
davdroman Nov 22, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
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
- mac-catalyst
- tvOS
swift:
- 5.5
- 5.6
- 5.7
steps:
- uses: actions/checkout@v2
- name: Test Popsicle
uses: mxcl/xcodebuild@v1
with:
platform: ${{ matrix.platform }}
swift: ~${{ matrix.swift }}
action: test
scheme: Popsicle
- if: ${{ matrix.swift >= 5.7 }}
name: Build Demo
uses: mxcl/xcodebuild@v1
with:
platform: ${{ matrix.platform }}
swift: ~${{ matrix.swift }}
action: build
scheme: Demo
30 changes: 9 additions & 21 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,22 +1,10 @@
# OS X

.DS_Store

# Xcode

build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
/.build
/Packages
/.swiftpm
/*.xcodeproj
xcuserdata/
DerivedData/
.swiftpm/config/registries.json
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
.netrc
Binary file removed Assets/1.gif
Binary file not shown.
Binary file removed Assets/header.png
Binary file not shown.
Loading