-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added Swift Package Manager * changed class AnyObject * Fixed README.md * Added Github Action for test and code coverage and updated podspec * updated podspec * updated minimum deployment target
- Loading branch information
1 parent
4854206
commit ba2015c
Showing
101 changed files
with
610 additions
and
5,497 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- '**' | ||
|
||
jobs: | ||
build: | ||
runs-on: macOS-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Swift | ||
run: | | ||
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer | ||
echo 'export PATH="/usr/bin:$PATH"' >> $GITHUB_PATH | ||
- name: Build and Test | ||
run: | | ||
xcodebuild clean build test -project "SundeedQLiteLibrary.xcodeproj" -scheme "SundeedQLiteLibrary" -destination "platform=iOS Simulator,OS=16.2,name=iPhone 13 Pro" -enableCodeCoverage YES GCC_GENERATE_TEST_COVERAGE_FILES=YES | ||
- name: Install Slather | ||
run: gem install slather | ||
- name: Convert .xcresult to .lcov | ||
run: slather coverage --cobertura-xml --input-format profdata --scheme SundeedQLiteLibrary --output-directory . --ignore "Pods/**/*" SundeedQLiteLibrary.xcodeproj | ||
- name: List files | ||
run: ls -ltr | ||
- name: Upload code coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
file: ./cobertura.xml | ||
fail_ci_if_error: true | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
710 changes: 0 additions & 710 deletions
710
Example/SundeedQLiteExample/Pods/Pods.xcodeproj/project.pbxproj
This file was deleted.
Oops, something went wrong.
173 changes: 0 additions & 173 deletions
173
...teExample/Pods/SundeedQLite/Library/ClassHandler/Map/SundeedQLiteMap+ArrayMandatory.swift
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.