-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
57 changed files
with
769 additions
and
876 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: "Align CI" | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- '*' | ||
|
||
jobs: | ||
macos-run-tests: | ||
name: Unit Tests (macOS, Xcode 13.3.1) | ||
runs-on: macOS-12 | ||
env: | ||
DEVELOPER_DIR: /Applications/Xcode_13.3.1.app/Contents/Developer | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Run Tests | ||
run: swift test | ||
|
||
ios-run-tests: | ||
name: Unit Tests (iOS 15.4, Xcode 13.3.1) | ||
runs-on: macOS-12 | ||
env: | ||
DEVELOPER_DIR: /Applications/Xcode_13.3.1.app/Contents/Developer | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Run Tests | ||
run: xcodebuild test -scheme "Align" -destination "OS=15.4,name=iPhone 13 Pro" | ||
|
||
discover-typos: | ||
name: Discover Typos | ||
runs-on: macOS-12 | ||
env: | ||
DEVELOPER_DIR: /Applications/Xcode_13.4.1.app/Contents/Developer | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Discover typos | ||
run: | | ||
python3 -m pip install --upgrade pip | ||
python3 -m pip install codespell | ||
codespell --ignore-words-list="inout" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
## Build generated | ||
build/ | ||
DerivedData/ | ||
.swiftpm/ | ||
|
||
## Various settings | ||
*.pbxuser | ||
|
This file was deleted.
Oops, something went wrong.
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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.