chore: bump ic-utils
, ic-agent
and ic-identity-hsm
to 0.27.0
#3460
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: Check cargo (unit) test | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
# When getting Rust dependencies, retry on network error: | |
CARGO_NET_RETRY: 10 | |
# Use the local .curlrc | |
CURL_HOME: . | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
rust: [ '1.65.0' ] | |
os: [ ubuntu-latest, macos-latest ] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Install Rust | |
run: | | |
rustup update ${{ matrix.rust }} --no-self-update | |
rustup component add clippy | |
rustup default ${{ matrix.rust }} | |
- name: Check cargo test | |
run: cargo test --workspace --all-features --no-fail-fast | |
aggregate: | |
name: unit:required | |
if: ${{ always() }} | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: check unit test result | |
if: ${{ needs.test.result != 'success' }} | |
run: exit 1 |