Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
61 changes: 61 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: CI

on:
pull_request:
branches:
- main

jobs:
build-and-test:
runs-on: macos-14

steps:
- name: Check out code
uses: actions/checkout@v3

- name: Select Xcode 16.2
run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer

- name: Display Xcode Version
run: xcodebuild -version

- name: Cache Swift packages
uses: actions/cache@v3
with:
path: |
~/Library/Developer/Xcode/DerivedData
.build
.swiftpm
key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}
restore-keys: |
${{ runner.os }}-spm-

- name: Cache Ruby gems
uses: actions/cache@v3
with:
path: /usr/local/lib/ruby/gems
key: ${{ runner.os }}-ruby-gems

- name: Install xcpretty
run: gem install xcpretty

- name: Build for iOS
run: |
xcodebuild build \
-project DBMultiverse.xcodeproj \
-scheme DBMultiverse \
-destination 'platform=iOS Simulator,name=iPhone 15' \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
| xcpretty

- name: Run Tests
run: |
xcodebuild test \
-project DBMultiverse.xcodeproj \
-scheme DBMultiverse \
-destination 'platform=iOS Simulator,name=iPhone 15' \
-resultBundlePath TestResults \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
| xcpretty
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@

# Multiverse Reader

![Build Status](https://github.com/nikolainobadi/DBMultiverse/actions/workflows/ci.yml/badge.svg)
![Swift Version](https://badgen.net/badge/swift/6.0/purple)
![Platform](https://img.shields.io/badge/platform-iOS%2017%2B-blue)
![License](https://img.shields.io/badge/license-MIT-lightgray)

Multiverse Reader is an iOS application designed to enhance the experience of reading and managing the DB Multiverse webcomic. The app integrates several modules, each providing specific functionality to ensure a seamless and enjoyable user experience.

## TestFlight
Expand Down