-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from MFB-Technologies-Inc/feature/initial-release
Feature/initial release
- Loading branch information
Showing
3 changed files
with
64 additions
and
0 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,54 @@ | ||
name: ci | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- '*' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
lint: | ||
runs-on: macos-14 | ||
environment: default | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: SwiftFormat version | ||
run: swiftformat --version | ||
- name: Format lint | ||
run: swiftformat --lint . | ||
- name: Install SwiftLint | ||
run: brew install swiftlint | ||
- name: SwiftLint version | ||
run: swiftlint --version | ||
- name: Lint | ||
run: swiftlint lint --quiet | ||
macos-test: | ||
runs-on: macos-14 | ||
environment: default | ||
strategy: | ||
matrix: | ||
xcode: ['14.3.1', '15.2'] | ||
# Swift: 5.8.1 , 5.9.2 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Select Xcode ${{ matrix.xcode }} | ||
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app | ||
- name: Run Tests | ||
run: swift test --enable-code-coverage --parallel | ||
- name: Swift Coverage Report | ||
run: xcrun llvm-cov export -format="lcov" .build/debug/secret-swiftPackageTests.xctest/Contents/MacOS/secret-swiftPackageTests -instr-profile .build/debug/codecov/default.profdata > coverage_report.lcov | ||
- uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
fail_ci_if_error: true # optional (default = false) | ||
linux-test: | ||
runs-on: ubuntu-latest | ||
environment: default | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Run Tests | ||
run: swift test --parallel |
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