Merge upstream 3.2.0 #10
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: Tests | |
on: pull_request | |
jobs: | |
tests: | |
name: Run Tests | |
runs-on: macOS-11 | |
steps: | |
- name: Checkout the Git repository | |
uses: actions/checkout@v2 | |
- name: Cache Carthage | |
uses: actions/cache@v1 | |
with: | |
path: Carthage | |
key: ${{ runner.os }}-tests-${{ env.cache-name }}-carthage-${{ hashFiles('**/Cartfile.resolved') }} | |
restore-keys: | | |
${{ runner.os }}-tests-${{ env.cache-name }}-carthage- | |
${{ runner.os }}-tests-${{ env.cache-name }}- | |
${{ runner.os }}-tests- | |
- name: Build and run tests | |
run: ./GitHubActions/build.sh tests | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |