name: Main workflow on: [push, pull_request]
## .gitignore
-autoloads.el .elc /.keg
;; Keg
(source gnu melpa)
(package ({{pkg-name}} (recipe . ({{pkg-name}} :fetcher github :repo "conao3/{{pkg-name}}.el"))))
(dev-dependency cort)
GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
...
## Makefile
all:
,,* Description {{description}}.
;;; {{pkg-name}}.el --- {{description}} -*- lexical-binding: t; -*-
;;; Code:
(defgroup {{pkg-name}} nil "{{description}}." :group 'convenience :link '(url-link :tag "Github" "https://github.com/conao3/{{pkg-name}}.el"))
(provide '{{pkg-name}}) ;;; {{pkg-name}}.el ends here
;;; {{pkg-name}}-tests.el --- Test definitions for {{pkg-name}} -*- lexical-binding: t; -*-
;;; Code:
(require 'cort) (require '{{pkg-name}})
;; (provide '{{pkg-name}}-tests) ;;; {{pkg-name}}-tests.el ends here