print working see with checkout
All checks were successful
Run short tests / run-tests (push) Successful in 1m14s
Run nightly tests / nightly-tests (push) Successful in 1m40s

This commit is contained in:
2025-05-21 14:41:44 +02:00
parent 17d2f4d1f5
commit f97841b079

View File

@@ -7,14 +7,16 @@ on:
branches: branches:
- main - main
jobs: jobs:
test-cron-job: nightly-tests:
runs-on: [ubuntu-latest, cloud] runs-on: [ubuntu-latest, cloud]
steps: steps:
- name: Print - uses: actions/checkout@v4
run : |
echo "Running nightly tests" - name: Set up Go
echo "Current date and time: $(date)" uses: actions/setup-go@v4
echo "Running on $(uname -a)" with:
echo "Running on $(cat /etc/os-release)" go-version: '1.23'
echo "Running on $(cat /proc/cpuinfo | grep 'model name' | uniq)"
echo "Running on $(cat /proc/meminfo | grep 'MemTotal')" - name: Test
working-directory: ./src
run: go test -v --short ./...