From 6c4be53f4b9dc921902a96a8b14c52abea3b5591 Mon Sep 17 00:00:00 2001 From: Tianyu Liu Date: Wed, 21 May 2025 20:30:55 +0200 Subject: [PATCH] Add second step --- .github/workflows/nightly.yml | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 095d207..d13df20 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -26,17 +26,23 @@ jobs: name: home-automation-backend_build_${{ github.run_number }} retention-days: 1 - # 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 + nightly-tests: + runs-on: [ubuntu-latest, cloud] + needs: build + steps: + - uses: actions/checkout@v4 + - name: Download artifacts + uses: actions/download-artifact@v3 + with: + name: home-automation-backend_build_${{ github.run_number }} + - name: Check files + run: ls -lR + # - 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 ./...