-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d7e0a52
commit 1255e20
Showing
3 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: CI | ||
|
||
on: | ||
pull_request: | ||
push: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
include: | ||
- emacs: 27.1 | ||
ts: false | ||
lint: true | ||
- emacs: snapshot | ||
ts: true | ||
lint: true | ||
steps: | ||
- uses: purcell/setup-emacs@master | ||
with: | ||
version: ${{ matrix.emacs }} | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install package-lint | ||
run: emacs -Q -l .github/workflows/init.el -batch | ||
--eval "(package-install 'package-lint)" | ||
|
||
- name: Lint evangelion-theme | ||
run: emacs -Q -l .github/workflows/init.el -batch | ||
-f package-lint-batch-and-exit | ||
evangelion-theme.el | ||
|
||
- name: Byte-compile | ||
run: emacs -Q -l .github/workflows/init.el -batch | ||
-L . | ||
--eval "(setq byte-compile-error-on-warn t)" | ||
-f batch-byte-compile | ||
*.el |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
(progn | ||
(require 'package) | ||
(push '("melpa" . "https://melpa.org/packages/") package-archives) | ||
(package-initialize) | ||
(unless (seq-find (lambda (e) (string= "melpa" (package-desc-archive (cadr e)))) package-archive-contents) | ||
(package-refresh-contents))) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
;;; evangelion-theme.el --- a purple colorscheme inspired by neon genesis evangelion -*- lexical-binding: t; -*- | ||
;;; Version: 0.01 | ||
|
||
;; Copyright (C) 2024 Andrew Jose, xero harrison | ||
|
||
;; SPDX-License-Identifier: GPL-3.0-or-later | ||
;; Author: Andrew Jose <[email protected]> | ||
;; Maintainer: Andrew Jose <[email protected]> | ||
;; URL: https://github.com/crmsnbleyd/evangelion-theme | ||
;; Package-Requires: ((emacs "27.1")) | ||
;; Keywords: faces, theme |