This repository has been archived by the owner on Apr 24, 2024. It is now read-only.
Bump github.com/prometheus/alertmanager from 0.26.0 to 0.27.0 #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Testing | |
on: | |
- push | |
- pull_request | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install golang | |
uses: actions/setup-go@v2 | |
- name: Fetch source | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Lint | |
run: go vet ./... | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install golang | |
uses: actions/setup-go@v2 | |
- name: Fetch source | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Test | |
run: go test -race ./... |