mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-10 12:37:25 +01:00
18 lines
328 B
YAML
18 lines
328 B
YAML
name: Run Test
|
|
on: push
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup Golang
|
|
uses: actions/setup-go@v2.1.4
|
|
|
|
- name: Build MetricCollector
|
|
run: make
|
|
|
|
- name: Run MetricCollector
|
|
run: ./cc-metric-collector --once --config .github/ci-config.json
|