Skip to content

Commit

Permalink
chore: add lint and auto assign action workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ajutamangdev committed Sep 15, 2024
1 parent 453faa0 commit d2f0405
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/auto_assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
addReviewers: true
reviewers:
- ajutamangdev

numberOfReviewers: 1
skipKeywords:
- '@dependabot'
22 changes: 22 additions & 0 deletions .github/workflows/lint-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Lint Test

on:
pull_request:
paths:
- '**.go'
- '**.mod'
workflow_dispatch:

jobs:
lint:
name: Lint Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Go
uses: projectdiscovery/actions/setup/go@v1

- name: Run golangci-lint
uses: projectdiscovery/actions/golangci-lint@v1

0 comments on commit d2f0405

Please sign in to comment.