Skip to content

crypto: Csprng should take a shared ref #100

crypto: Csprng should take a shared ref

crypto: Csprng should take a shared ref #100

Workflow file for this run

name: "Unit tests"
on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
workflow_call:
inputs:
workflow:
required: true
type: string
env:
REV: ${{ github.run_id }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ inputs.workflow }}
cancel-in-progress: true
jobs:
unit-tests:
strategy:
matrix:
runner:
- ubuntu-latest
- ubuntu2404-arm64-4core
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
- name: Setup Environment
uses: ./.github/actions/setup
- name: Unit Tests
run: cargo make unit-tests