try build
Some checks failed
Run nightly tests / build (push) Failing after 35s
Run short tests / run-tests (push) Successful in 1m23s

This commit is contained in:
2025-05-21 19:59:11 +02:00
parent f288b32092
commit 69c6d2fd3f

View File

@@ -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 ./...