Swift Foundation Android CI #240
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: Swift Foundation Android CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: | |
| - '*' | |
| schedule: | |
| - cron: '30 6,17 * * *' | |
| jobs: | |
| test: | |
| # Runner must be macos-13, since lack of nested virtualization support on macos-14 prevents the Android emulator from working | |
| # see: https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners#limitations-for-arm64-macos-runners | |
| runs-on: macos-13 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "Test Swift (6.0) Package on Android" | |
| uses: skiptools/swift-android-action@v1 | |
| with: | |
| swift-version: '6.0' | |