Skip to content

get rid of dedicated signal channel #30

get rid of dedicated signal channel

get rid of dedicated signal channel #30

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags:
- "v*"
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: |
cd host
cargo check
- name: Test
run: |
cd host
cargo test -- --nocapture
- name: Build examples
run: for i in nrf-sdc; do pushd examples/$i; cargo build --release; popd; done;