Add Spanish UI support, roadmap, and modernize CI/release workflows #26
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| build: | |
| name: Build (macOS) | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Select latest Xcode | |
| run: | | |
| set -euo pipefail | |
| XCODE_PATH="$(ls -1d /Applications/Xcode*.app 2>/dev/null | sort -V | tail -n 1)" | |
| if [[ -z "${XCODE_PATH:-}" ]]; then | |
| echo "No Xcode installation found on runner." >&2 | |
| exit 1 | |
| fi | |
| sudo xcode-select -s "$XCODE_PATH/Contents/Developer" | |
| xcodebuild -version | |
| - name: Swift build | |
| run: swift build | |
| - name: Swift test | |
| run: swift test |