feat(ci): new simulator selection for iOS 🚀 #451
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: Build Linux | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: '0 16 15 * *' | |
| jobs: | |
| build: | |
| name: Build Linux | |
| runs-on: ubuntu-latest | |
| container: | |
| image: swift:latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Build Linux framework | |
| run: | | |
| swift build | |
| swift test | |
| - name: Build Linux Demo | |
| run: | | |
| cd Demo/Demo\ Ubuntu | |
| swift build |