prometheus/.github/workflows/test.yml
Marco Pracucci dfe1075656
Added linter
Signed-off-by: Marco Pracucci <marco@pracucci.com>
2021-08-12 16:39:03 +02:00

23 lines
400 B
YAML

name: ci
on:
push:
branches: [main]
pull_request:
jobs:
lint:
runs-on: ubuntu-20.04
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Lint
uses: golangci/golangci-lint-action@v2
test:
runs-on: ubuntu-20.04
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Run Tests
run: make common-test