Skip to content

Commit

Permalink
Move HLint script to a separate workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
balacij committed Jul 21, 2023
1 parent bedbcbf commit 0bc658d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/Lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on:
pull_request:
branches: master
paths: 'code/drasil-*'
name: Linter
defaults:
run:
shell: bash
working-directory: code
jobs:
linter:
name: "HLint"
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: "HLint"
run: make hot_hlint

0 comments on commit 0bc658d

Please sign in to comment.