23 lines
412 B
YAML
23 lines
412 B
YAML
name: Run nightly tests
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '*/10 * * * *' # Every day at midnight 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: Test
|
|
working-directory: ./src
|
|
run: go test -v --short ./...
|