Skip to content

Nightly Tests

Nightly Tests #31

name: Nightly Tests
on:
schedule:
- cron: '0 3 * * *'
workflow_dispatch:
env:
GOPROXY: https://proxy.golang.org/
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 120
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.22
- name: Install depdenencies
run: sudo apt install -y libsystemd-dev # for collector journal input
- name: Test
run: INTEGRATION=1 ROLLBACK=1 go test -race -mod=vendor -v -timeout=120m ./...