mirror of
https://github.com/ClusterCockpit/cc-metric-store.git
synced 2024-11-10 05:07:25 +01:00
19 lines
383 B
YAML
19 lines
383 B
YAML
|
name: Build & Test
|
||
|
on: [push, pull_request]
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Install Go
|
||
|
uses: actions/setup-go@v2
|
||
|
with:
|
||
|
go-version: 1.16.x
|
||
|
- name: Checkout code
|
||
|
uses: actions/checkout@v2
|
||
|
- name: Build, Vet & Test
|
||
|
run: |
|
||
|
go build ./...
|
||
|
go vet ./...
|
||
|
go test -v ./...
|
||
|
|