Skip to content

add env variable for cronSchedule and make default cronSchedule to 5m #8

add env variable for cronSchedule and make default cronSchedule to 5m

add env variable for cronSchedule and make default cronSchedule to 5m #8

Workflow file for this run

name: Go
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Compile
run: |
cd collector
go build -v ./...
- name: Test
run: |
cd collector
go test -v ./...