Bump github.com/apple/swift-log from 1.4.2 to 1.5.2 #20
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: Swift | |
on: | |
push: | |
tags: | |
- '*' | |
paths-ignore: # do not trigger for changes in docs | |
- docs/** | |
- README.md | |
- CHANGELOG.md | |
- LICENSE.md | |
pull_request: | |
branches: [ master ] | |
paths-ignore: # do not trigger for changes in docs | |
- docs/** | |
- README.md | |
- CHANGELOG.md | |
- LICENSE.md | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Resolve dependencies | |
run: swift package resolve | |
continue-on-error: true | |
- name: Build | |
run: swift build -v | |
continue-on-error: true | |
- name: Run tests | |
run: swift test -v | |
## setting continue-on-error: true will cause failure | |
## because 'swift test' writes content to stderr | |
#continue-on-error: true |