Skip to content

Bump github.com/apple/swift-log from 1.4.2 to 1.5.2 #20

Bump github.com/apple/swift-log from 1.4.2 to 1.5.2

Bump github.com/apple/swift-log from 1.4.2 to 1.5.2 #20

Workflow file for this run

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