From a269cf0389acd16d8e62ecd3d650a5952fa9a1ba Mon Sep 17 00:00:00 2001 From: Matthew Rich Date: Wed, 3 Apr 2024 15:53:10 -0700 Subject: [PATCH] add build to action --- .gitea/workflows/test.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 27fc3e8..8e5f9a9 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -30,6 +30,13 @@ jobs: - name: Run tests run: | go test -coverprofile=artifacts/coverage.profile ./... + - name: Run build + run: | + make build + - name: cli tests + run: | + go test + - run: echo "This job's status is ${{ job.status }}." - run: echo "This job's status is ${{ job.status }}." - name: coverage report run: | @@ -39,4 +46,9 @@ jobs: with: name: code-coverage-report path: artifacts/code-coverage.html + - name: Archive binary + uses: actions/upload-artifact@v3 + with: + name: decl + path: decl - run: echo "This job's status is ${{ job.status }}."