ci: Upgrade nix install GH action #61
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: linter | |
on: push | |
jobs: | |
lint-files: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Nix | |
uses: cachix/install-nix-action@v25 | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Prepare Nix shell | |
run: nix develop -c bash -c ':' | |
- name: Lint files | |
run: nix develop -c clj-kondo --lint deps.edn --config '{:output {:pattern "::{{level}} file={{filename}},line={{row}},col={{col}}::{{message}}"}}' |