bump version #344
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: Build and Test | |
on: | |
push: | |
paths: | |
- 'MailTrackerBlocker.xcodeproj/**' | |
- 'Source/**' | |
- 'Unit Tests/**' | |
pull_request: | |
jobs: | |
unit-test: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: make test | |
- uses: kishikawakatsumi/xcresulttool@v1 | |
with: | |
path: TestResults.xcresult | |
if: success() || failure() | |
# ^ This is important because the action will be run | |
# even if the test fails in the previous step. |