Skip to content

Commit

Permalink
Merge e5a0327 into 6946b74
Browse files Browse the repository at this point in the history
  • Loading branch information
mmorel-35 committed May 8, 2021
2 parents 6946b74 + e5a0327 commit d36fca3
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: gomod
directory: /
schedule:
interval: daily
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,19 @@
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
continue-on-error: true
with:
version: latest
14 changes: 14 additions & 0 deletions .golangci.yml
@@ -0,0 +1,14 @@
linters:
enable:
- megacheck
- govet
- unparam
- unconvert
- misspell
- lll
- gofmt
- golint
- gosec
- nakedret
- dogsled
- depguard

0 comments on commit d36fca3

Please sign in to comment.