diff --git a/.github/workflows/build-onyx.yml b/.github/workflows/build-onyx.yml index a2ec4062..8349b7e7 100644 --- a/.github/workflows/build-onyx.yml +++ b/.github/workflows/build-onyx.yml @@ -53,4 +53,23 @@ jobs: working-directory: onyx run: | make setup - make build \ No newline at end of file + make build + test: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + attestations: write + id-token: write + steps: + - name: Setup Golang caches + id: go-cache + uses: actions/cache@v3 + with: + path: | + onyx + restore-keys: | + ${{ runner.os }}-golang- + - name: Check + run: ls -ltr onyx/bin + \ No newline at end of file