Skip to content

Commit 27b6ff2

Browse files
committed
Add melpazoid github workflow
1 parent 5202a49 commit 27b6ff2

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/melpazoid.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# melpazoid <https://github.com/riscy/melpazoid> build checks.
2+
3+
# If your package is on GitHub, enable melpazoid's checks by copying this file
4+
# to .github/workflows/melpazoid.yml and modifying RECIPE and EXIST_OK below.
5+
6+
name: melpazoid
7+
on: [push, pull_request]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Set up Python 3.6
15+
uses: actions/setup-python@v1
16+
with: { python-version: 3.6 }
17+
- name: Install
18+
run: |
19+
python -m pip install --upgrade pip
20+
sudo apt-get install emacs && emacs --version
21+
git clone https://github.com/riscy/melpazoid.git ~/melpazoid
22+
pip install ~/melpazoid
23+
- name: Run
24+
env:
25+
LOCAL_REPO: ${{ github.workspace }}
26+
# RECIPE is your recipe as written for MELPA:
27+
RECIPE: (dirvish :repo "alexluigit/dirvish" :fetcher github)
28+
# set this to false (or remove it) if the package isn't on MELPA:
29+
EXIST_OK: false
30+
run: echo $GITHUB_REF && make -C ~/melpazoid

0 commit comments

Comments
 (0)