- explicitly catch missing errors #40
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: Unit Test | |
# Run unit tests on every push or pull request, to main or develop | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- main | |
- develop | |
# Checkout the code, and run mxcl's xcodebuild action to run the unit tests | |
jobs: | |
build: | |
runs-on: macos-12 | |
strategy: | |
matrix: | |
platform: | |
- iOS | |
- macOS | |
xcode: | |
- ^13 | |
steps: | |
- uses: actions/checkout@v2.3.4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: "swift" | |
- uses: mxcl/xcodebuild@v1.9.2 | |
with: | |
platform: ${{ matrix.platform }} | |
xcode: ${{ matrix.xcode }} | |
action: test | |
scheme: KukaiCryptoSwift | |
code-coverage: true | |
upload-logs: always | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 | |
with: | |
category: "/language:swift" |