Test target refactoring #50
Workflow file for this run
This file contains 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: Validation and Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
# CocoaPodsValidation: | |
# runs-on: macos-11 | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - name: Cocoapods | |
# run: pod lib lint --allow-warnings | |
UnitTests: | |
runs-on: macos-11 | |
steps: | |
- name: Setup MySQL | |
uses: ankane/setup-mysql@v1 | |
with: | |
mysql-version: 8.0 | |
database: tests | |
- name: Install xcodegen | |
run: brew install xcodegen | |
- name: Generate project | |
run: xcodegen | |
- name: Run tests | |
run: xcodebuild -project OHMySQL.xcodeproj -scheme "OHMySQLTests" -parallel-testing-enabled NO -destination "platform=iOS Simulator,OS=latest,name=iPhone 14" test \ | |
USER_NAME='root' \ | |
USER_PASSWORD='' \ | |
DB_NAME='tests' \ | |
DB_HOST='localhost' \ | |
DB_PORT='3306' \ | |
DB_SOCKET='/tmp/mysql.sock' | xcpretty |