Skip to content

fix :: testRpmZero → testRpmDropToZero 수정 #4

fix :: testRpmZero → testRpmDropToZero 수정

fix :: testRpmZero → testRpmDropToZero 수정 #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Build & Test (ARM64)
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Qt6 & build tools
run: |
sudo apt-get update -q
sudo apt-get install -y --no-install-recommends \
qt6-base-dev \
qt6-tools-dev \
cmake \
ninja-build \
can-utils
- name: Configure
run: |
cmake -B build -G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_TESTS=ON
- name: Build
run: cmake --build build --parallel
- name: Run tests
run: ctest --test-dir build --output-on-failure --timeout 30