Skip to content

Test ci/cd commit.

Test ci/cd commit. #13

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
run-test:
runs-on: macos-latest
strategy:
matrix:
destination: ["iOS Simulator,name=iPhone 14"]
swift-version: [5.0]
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.2
bundler-cache: true
- name: Run tests
env:
DESTINATION: platform=${{ matrix.destination }}
SWIFT_VERSION: ${{ matrix.swift-version }}
run: bundle exec fastlane test_ci