Added option for whether the system automatically enables the Return … #79
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 ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build-and-test: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Build and Run Tests | |
| uses: sersoft-gmbh/[email protected] | |
| with: | |
| workspace: ResponsiveTextField.xcworkspace | |
| scheme: ResponsiveTextField | |
| destination: "platform=iOS Simulator,OS=17.5,name=iPhone 15" | |
| action: test | |
| derived-data-path: /tmp/DerivedData | |
| enable-code-coverage: true | |
| - uses: michaelhenry/[email protected] | |
| with: | |
| build-path: /tmp/DerivedData | |
| target: ResponsiveTextFieldTests.xctest | |
| is-spm: true | |
| - name: Publish to code climate | |
| uses: paambaati/[email protected] | |
| env: | |
| CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
| with: | |
| coverageLocations: | | |
| coverage/lcov.info:lcov |