一次元台形制御クラスの追加 #813
Workflow file for this run
This file contains 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
# | |
# Unit Tests | |
# | |
# Copyright (c) 2022-2024 udonrobo | |
# | |
name: Unit Tests | |
on: | |
push: | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Clone submodules | |
run: git submodule update --init --recursive | |
- name: Build | |
working-directory: test/UnitTest | |
run: cmake -S . -B Build && cmake --build Build | |
- name: Run tests | |
working-directory: test/UnitTest/Build | |
run: ctest --output-on-failure |