Skip to content

Commit

Permalink
ci(emacs-lisp): Check if just -l runs
Browse files Browse the repository at this point in the history
  • Loading branch information
akirak committed Jul 18, 2024
1 parent d870a05 commit 8f90716
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/check-emacs-lisp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Check emacs-lisp

on:
push:
paths:
- emacs-lisp/**
- .github/workflows/check-emacs-lisp.yml
workflow_dispatch:
workflow_call:

concurrency:
group: check-emacs-lisp-${{ github.ref }}
cancel-in-progress: true

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: cachix/install-nix-action@V27

- name: Install just
run: nix profile install nixpkgs#just

- name: Lint justfile
working-directory: emacs-lisp
run: just -l

0 comments on commit 8f90716

Please sign in to comment.