Skip to content

Commit 15084b3

Browse files
authored
Merge pull request #55 from jcs-PR/test/ci
test: Add CI
2 parents 1e80b97 + 236a303 commit 15084b3

File tree

6 files changed

+128
-0
lines changed

6 files changed

+128
-0
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
schedule:
6+
interval: daily

.github/workflows/test.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
workflow_dispatch:
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
test:
16+
runs-on: ${{ matrix.os }}
17+
continue-on-error: ${{ matrix.experimental }}
18+
strategy:
19+
fail-fast: false
20+
matrix:
21+
os: [ubuntu-latest, macos-latest, windows-latest]
22+
emacs-version:
23+
- 26.3
24+
- 27.2
25+
- 28.2
26+
- 29.1
27+
experimental: [false]
28+
include:
29+
- os: ubuntu-latest
30+
emacs-version: snapshot
31+
experimental: true
32+
- os: macos-latest
33+
emacs-version: snapshot
34+
experimental: true
35+
- os: windows-latest
36+
emacs-version: snapshot
37+
experimental: true
38+
39+
steps:
40+
- uses: actions/checkout@v3
41+
42+
- uses: jcs090218/setup-emacs@master
43+
with:
44+
version: ${{ matrix.emacs-version }}
45+
46+
- uses: emacs-eask/setup-eask@master
47+
with:
48+
version: 'snapshot'
49+
50+
- name: Run tests
51+
run:
52+
make ci

.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# ignore these directories
2+
/.git
3+
/recipes
4+
5+
# ignore log files
6+
/.log
7+
8+
# ignore generated files
9+
*.elc
10+
11+
# eask packages
12+
.eask/
13+
dist/
14+
15+
# packaging
16+
*-autoloads.el
17+
*-pkg.el
18+
19+
# personal test
20+
/_test

Eask

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
(package "blacken"
2+
"0.2.0"
3+
"Reformat python buffers using the \"black\" formatter")
4+
5+
(website-url "https://github.com/proofit404/blacken")
6+
(keywords "convenience" "blacken")
7+
8+
(package-file "blacken.el")
9+
10+
(script "test" "echo \"Error: no test specified\" && exit 1")
11+
12+
(source "gnu")
13+
14+
(depends-on "emacs" "25.2")
15+
16+
(setq network-security-level 'low) ; see https://github.com/jcs090218/setup-emacs-windows/issues/156#issuecomment-932956432

Makefile

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
EMACS ?= emacs
2+
EASK ?= eask
3+
4+
.PHONY: clean checkdoc lint package install compile test
5+
6+
ci: clean package install compile
7+
8+
package:
9+
@echo "Packaging..."
10+
$(EASK) package
11+
12+
install:
13+
@echo "Installing..."
14+
$(EASK) install
15+
16+
compile:
17+
@echo "Compiling..."
18+
$(EASK) compile
19+
20+
test:
21+
@echo "Testing..."
22+
$(EASK) test ert ./test/*.el
23+
24+
checkdoc:
25+
@echo "Run checkdoc..."
26+
$(EASK) lint checkdoc
27+
28+
lint:
29+
@echo "Run package-lint..."
30+
$(EASK) lint package
31+
32+
clean:
33+
$(EASK) clean all

blacken.el

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
;; Version: 0.2.0
88
;; Package-Requires: ((emacs "25.2"))
99
;; SPDX-License-Identifier: GPL-3.0-or-later
10+
;; Keywords: convenience blacken
1011

1112
;; This file is free software; you can redistribute it and/or modify
1213
;; it under the terms of the GNU General Public License as published

0 commit comments

Comments
 (0)