Skip to content

Commit

Permalink
chore(workflows): add lint action
Browse files Browse the repository at this point in the history
  • Loading branch information
adhocore committed May 6, 2021
1 parent d345faa commit ccc380a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/lint-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: lint
on: [push]
jobs:
golint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Lint
id: golint
uses: Jerome1337/go-action/lint@master
- name: Lint Output
run: echo "${{ steps.golint.outputs.golint-output }}"

0 comments on commit ccc380a

Please sign in to comment.