This repository was archived by the owner on Oct 16, 2025. It is now read-only.
feat: add renewalInfoIOS for subscription status tracking #184
Workflow file for this run
This file contains hidden or 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
| name: Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Verify generated types are not changed | |
| run: | | |
| ./scripts/generate-types.sh | |
| git diff --exit-code Sources/Models/Types.swift | |
| - name: Select Xcode | |
| run: | | |
| echo "Available Xcode versions:" | |
| ls -la /Applications | grep Xcode | |
| # Use the latest available Xcode | |
| sudo xcode-select -s /Applications/Xcode.app | |
| - name: Build | |
| run: swift build | |
| - name: Run tests | |
| run: swift test |