Add files to comply with community standards #7
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: "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/action-swiftlint@3.2.1 | |
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=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-12 | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_14.1.app/Contents/Developer | |
steps: | |
- uses: actions/checkout@v2 | |
- 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/*" |