fix: remove regex validation on Variable.key #324
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: Build and Test watchOS | |
| on: | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: macos-26 | |
| steps: | |
| - name: Checkout Project | |
| uses: actions/checkout@v4 | |
| - name: "Select Latest Xcode" | |
| uses: maxim-lobanov/setup-xcode@c51a66b42363123fa82a6cfe02c60af4281dab93 | |
| with: | |
| xcode-version: latest-stable | |
| - name: "Carthage Cached Bootstrap" | |
| uses: DevCycleHQ/[email protected] | |
| with: | |
| github-token: ${{ secrets.AUTOMATION_USER_TOKEN }} | |
| use-xcframeworks: true | |
| - name: Fastlane watchOS Tests | |
| run: fastlane watchos tests | |
| timeout-minutes: 15 |