hnix/.github/workflows/HLint.yml
dependabot[bot] c8b753e870 Bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-10-27 13:53:53 +03:00

26 lines
413 B
YAML

name: "Checking code"
on:
pull_request:
push:
branches:
- master
jobs:
build10:
name: "HLint"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 'Installing'
uses: haskell/actions/hlint-setup@v2
with:
version: '3.5'
- name: 'Checking code'
uses: haskell/actions/hlint-run@v2
with:
path: .
fail-on: warning