Implement the play(_:)
method (#4)
#13
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: "haptic-feedback" | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
paths: | |
- '.swiftlint.yml' | |
- ".github/workflows/**" | |
- "Package.swift" | |
- "Source/**" | |
- "Tests/**" | |
jobs: | |
SwiftLint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: GitHub Action for SwiftLint | |
uses: norio-nomura/[email protected] | |
with: | |
args: --strict | |
env: | |
DIFF_BASE: ${{ github.base_ref }} | |
iOS: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.runsOn }} | |
env: | |
DEVELOPER_DIR: "/Applications/${{ matrix.xcode }}.app/Contents/Developer" | |
timeout-minutes: 20 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- destination: "OS=18.1,name=iPhone 16 Pro" | |
name: "iOS 18.1" | |
xcode: "Xcode_16.1" | |
runsOn: macOS-14 | |
- destination: "OS=18.0,name=iPhone 16 Pro" | |
name: "iOS 18.0" | |
xcode: "Xcode_16.0" | |
runsOn: macOS-14 | |
- destination: "OS=17.5,name=iPhone 15 Pro" | |
name: "iOS 17.5" | |
xcode: "Xcode_15.4" | |
runsOn: macOS-14 | |
- destination: "OS=17.0.1,name=iPhone 14 Pro" | |
name: "iOS 17.0.1" | |
xcode: "Xcode_15.0" | |
runsOn: macos-13 | |
- destination: "OS=16.4,name=iPhone 14 Pro" | |
name: "iOS 16.4" | |
xcode: "Xcode_14.3.1" | |
runsOn: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: ${{ matrix.name }} | |
run: xcodebuild -scheme "HapticFeedback" -destination "${{ matrix.destination }}" clean || exit 1 | |
discover-typos: | |
name: Discover Typos | |
runs-on: macOS-13 | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_14.1.app/Contents/Developer | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Discover typos | |
run: | | |
export PATH="$PATH:/Library/Frameworks/Python.framework/Versions/3.11/bin" | |
python3 -m pip install --upgrade pip | |
python3 -m pip install codespell | |
codespell --ignore-words-list="hart,inout,msdos,sur" --skip="./.build/*,./.git/*" |