Files
home-automation-backend/.github/workflows/nightly.yml
Tianyu Liu 06606ca06c
Some checks failed
Run short tests / run-tests (push) Has been cancelled
try build
2025-05-21 19:56:54 +02:00

25 lines
486 B
YAML

name: Run nightly tests
on:
workflow_dispatch:
schedule:
- cron: '0 20 * * *' # Every day at 20:00 UTC
push:
branches:
- main
jobs:
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 ./...