✨ feat(interpolation): 添加样条插值算法,支持浮点数和双精度数据类型,更新相关函数和结构体 #4
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: build-run | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - '**/*.c' | |
| - '**/*.h' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install build tools | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y build-essential gcc make tree check | |
| - name: Test project | |
| run: | | |
| cd test | |
| make test |