Skip to content

Commit

Permalink
Merge pull request #5 from Luzilla/ci
Browse files Browse the repository at this point in the history
CI stuff
  • Loading branch information
till authored Nov 2, 2019
2 parents a173c9a + 49a21bf commit 7816159
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: 2.1
workflows:
main:
jobs:
- release:
# Only run this job on git tag pushes
filters:
branches:
ignore: /.*/
tags:
only: /v[0-9]+(\.[0-9]+)*(-.*)*/
jobs:
release:
docker:
- image: circleci/golang:1.12
steps:
- checkout
- run: curl -sL https://git.io/goreleaser | bash
- run: goreleaser check
- run: goreleaser --snapshot --rm-dist
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# dnsbl-exporter

[![CircleCI](https://circleci.com/gh/Luzilla/dnsbl_exporter.svg?style=svg)](https://circleci.com/gh/Luzilla/dnsbl_exporter) [![Maintainability](https://api.codeclimate.com/v1/badges/31b95e6c679f60e30bea/maintainability)](https://codeclimate.com/github/Luzilla/dnsbl_exporter/maintainability)

This is a server which checks the configured hosts against various DNSBL (sometimes refered to as RBLs).

The idea is to scrape `/metrics` using Prometheus to create graphs, alerts, and so on.
Expand Down

0 comments on commit 7816159

Please sign in to comment.