From b754b19a8fb9798276b0211e9da4949c7764d932 Mon Sep 17 00:00:00 2001 From: KiriAky107 <2026692687@qq.com> Date: Tue, 1 Jul 2025 18:33:49 +0800 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f5c06cd..7ea9793 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ ## Updata -更新反三角函数的定义域判定,取整函数floor、ceil和round和阶乘运算的支持,同时更新变量暂存计算 +更新反三角函数的定义域判定,取整函数floor、ceil以及round和阶乘运算的支持,同时更新变量暂存计算 # 数据结构课设 From 61ae55ee19e1550a3d1d1b55bef9fa4bb3d3378f Mon Sep 17 00:00:00 2001 From: KiriAky107 <2026692687@qq.com> Date: Tue, 1 Jul 2025 23:06:36 +0800 Subject: [PATCH 2/2] Create c-cpp.yml --- .github/workflows/c-cpp.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/c-cpp.yml diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..fbf32ec --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,23 @@ +name: C/C++ CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck