Skip to content

build(deps): bump ring from 0.17.8 to 0.17.14 #381

build(deps): bump ring from 0.17.8 to 0.17.14

build(deps): bump ring from 0.17.8 to 0.17.14 #381

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@master
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ matrix.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-test-1
- name: Run Tests
run: cargo test
aggregate:
name: test:required
if: ${{ always() }}
runs-on: ubuntu-latest
needs: [test]
steps:
- name: check result
if: ${{ needs.test.result != 'success' }}
run: exit 1