core 20: fix cl signatures caching #82
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: Code coverage | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
build: | |
name: Code coverage | |
runs-on: macos-latest | |
steps: | |
- name: Install automake | |
run: | | |
brew install automake | |
- name: Checkout dash-shared-core | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
path: dash-shared-core | |
submodules: recursive | |
- name: Rustup add targets | |
run: rustup target add aarch64-apple-ios x86_64-apple-ios aarch64-apple-ios-sim | |
- name: Invoke uploader | |
working-directory: ./dash-shared-core | |
run: | | |
curl -Os https://uploader.codecov.io/latest/macos/codecov && chmod +x codecov && ./codecov |