Skip to content

testing

testing #47

Workflow file for this run

name: Ceedling Unit Tests
on:
push:
branches: [ master,anan_zephyr_test ]
pull_request:
branches: [ master ]
jobs:
run_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
path: ucxclient
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Copy west.yml
shell: bash
run: |
cp ucxclient/zephyr/ci-dummy-west.yml ucxclient/west.yml
- name: Setup Zephyr project
uses: zephyrproject-rtos/action-zephyr-setup@v1
with:
app-path: ucxclient
toolchains: x86_64-zephyr-elf
- name: Build firmware
working-directory: ucxclient/
shell: bash
run: |
west twister -T zephyr/port_test/
- name: Process Test results
uses: dorny/test-reporter@v1
if: always() # always run even if the previous step fails
with:
name: Unit Test Results
path: 'twister-out/twister.xml'
reporter: jest-junit