Skip to content

Commit

Permalink
Add a github actions workflow to lint code on every push
Browse files Browse the repository at this point in the history
  • Loading branch information
tonelli-m committed Jul 16, 2024
1 parent bc8e26f commit 29600ad
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: detekt

on:
push

jobs:
detekt:
runs-on: ubuntu-latest

steps:
- name: "checkout"
uses: actions/checkout@v2

- name: "detekt"
uses: natiginfo/action-detekt-all@1.23.6
with:
args: --config "config/detekt.yml"

0 comments on commit 29600ad

Please sign in to comment.