From 69c6d2fd3f163e1ceec077da7ae97d637a9c336d Mon Sep 17 00:00:00 2001 From: Tianyu Liu Date: Wed, 21 May 2025 19:59:11 +0200 Subject: [PATCH] try build --- .github/workflows/nightly.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 4218082..8a907f8 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -6,7 +6,7 @@ on: - cron: '0 20 * * *' # Every day at 20:00 UTC push: jobs: - nightly-tests: + build: runs-on: [ubuntu-latest, cloud] steps: - uses: actions/checkout@v4 @@ -16,7 +16,18 @@ jobs: with: go-version: '1.23' - name: build - run: go build + run: go build ../../src + # nightly-tests: + # runs-on: [ubuntu-latest, cloud] + # steps: + # - uses: actions/checkout@v4 + + # - name: Set up Go + # uses: actions/setup-go@v4 + # with: + # go-version: '1.23' + # - name: build + # run: go build # - name: Run nightly tests # working-directory: ./tests # run: go test -v --short ./...