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
43 changes: 43 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,49 @@ jobs:
- name: Build with Swift Package Manager - ${{ matrix.name }}
run: swift build -c release

test-linux:
name: Linux
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- image: swift:6.0-focal
- image: swift:6.0-jammy
- image: swift:6.0-rhel-ubi9
- image: swift:6.1-focal
- image: swift:6.1-jammy
- image: swift:6.1-rhel-ubi9
- image: swift:6.2-bookworm
- image: swift:6.2-jammy
- image: swift:6.2-noble
- image: swift:6.2-rhel-ubi9
- image: swiftlang/swift:nightly-focal
- image: swiftlang/swift:nightly-jammy
container:
image: ${{ matrix.image }}
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: ${{ matrix.image }}
run: swift build --build-tests -c debug

test-android:
name: Android
strategy:
fail-fast: false
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Build for Android
uses: skiptools/swift-android-action@v2
with:
build-tests: true
run-tests: false

merge-test-reports:
needs: test-apple-platforms
runs-on: macos-15
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ Typhoon is a modern, lightweight Swift framework that provides elegant and robus
## Features

✨ **Multiple Retry Strategies** - Constant, exponential, and exponential with jitter
⚡ **Async/Await Native** - Built for modern Swift concurrency
⚡ **Async/Await Native** - Built for modern Swift concurrency
🎯 **Type-Safe** - Leverages Swift's type system for compile-time safety
🔧 **Configurable** - Flexible retry parameters for any use case
🔧 **Configurable** - Flexible retry parameters for any use case
📱 **Cross-Platform** - Works on iOS, macOS, tvOS, watchOS, and visionOS
⚡ **Lightweight** - Minimal footprint with zero dependencies
⚡ **Lightweight** - Minimal footprint with zero dependencies
🧪 **Well Tested** - Comprehensive test coverage

## Table of Contents
Expand Down