New Battery! 🔋 Add support for Rivian batteries 🔋 #5244
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ⚙️ Run Unit Tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v5 | |
- name: Configure and build with CMake | |
run: | | |
cd test | |
mkdir build | |
cd build | |
cmake .. | |
cmake --build . | |
- name: Run unit tests | |
run: | | |
cd test/build | |
ctest |