Skip to content

✨ feat(interpolation): 添加样条插值算法,支持浮点数和双精度数据类型,更新相关函数和结构体 #5

✨ feat(interpolation): 添加样条插值算法,支持浮点数和双精度数据类型,更新相关函数和结构体

✨ feat(interpolation): 添加样条插值算法,支持浮点数和双精度数据类型,更新相关函数和结构体 #5

Workflow file for this run

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