Bump addressable from 2.8.1 to 2.9.0 #7
This file contains hidden or 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: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Build | |
| run: swift build -v | |
| - name: Run tests | |
| run: swift test -v | |
| - name: Codecov | |
| uses: codecov/codecov-action@v1.0.7 | |
| with: | |
| # User defined upload name. Visible in Codecov UI | |
| name: # optional | |
| # Repository upload token - get it from codecov.io. Required only for private repositories | |
| token: # optional | |
| # Path to coverage file to upload | |
| file: # optional | |
| # Flag upload to group coverage metrics (e.g. unittests | integration | ui,chrome) | |
| flags: # optional | |
| # Environment variables to tag the upload with (e.g. PYTHON | OS,PYTHON) | |
| env_vars: # optional | |
| # Specify whether or not CI build should fail if Codecov runs into an error during upload | |
| fail_ci_if_error: # optional |