From d584d2ffa3fc56cd5dc732af3b64d882e89206ef Mon Sep 17 00:00:00 2001 From: "Xinwei Xiong(cubxxw-openim)" <3293172751nss@gmail.com> Date: Mon, 17 Jul 2023 14:50:52 +0800 Subject: [PATCH] feat: add test file Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> --- .github/workflows/openimci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/openimci.yml b/.github/workflows/openimci.yml index e3547412d..753250185 100644 --- a/.github/workflows/openimci.yml +++ b/.github/workflows/openimci.yml @@ -61,40 +61,40 @@ jobs: - name: Run go modules tidy run: | sudo make tidy - echo "Run go modules tidy successfully" >> $GITHUB_OUTPUT + echo "Run go modules tidy successfully" - name: Run go format run: | sudo make format - echo "Run go format successfully" >> $GITHUB_OUTPUT + echo "Run go format successfully" continue-on-error: true - name: Generate all necessary files, such as error code files run: | make generate - echo "Generate all necessary files successfully" >> $GITHUB_OUTPUT + echo "Generate all necessary files successfully" continue-on-error: true - name: Run unit test and get test coverage run: | make cover - echo "Run unit test and get test coverage successfully" >> $GITHUB_OUTPUT + echo "Run unit test and get test coverage successfully" continue-on-error: true - name: Build source code for host platform run: | sudo make build - echo "Build source code for host platform successfully" >> $GITHUB_OUTPUT + echo "Build source code for host platform successfully" - name: OpenIM verify copyright run: | sudo make verify-copyright - echo "OpenIM verify successfully" >> $GITHUB_OUTPUT + echo "OpenIM verify successfully" - name: Clean all build run: | sudo make clean - echo "Clean all build successfully" >> $GITHUB_OUTPUT + echo "Clean all build successfully" - name: push OpenIM uses: stefanzweifel/git-auto-commit-action@v4