Skip to content

Update Example Docs #171

Update Example Docs

Update Example Docs #171

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
c-example-application:
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: C Example Application
run: |
export CC=clang
cargo make run-capi-example